microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
IT/src/main/java/module-info.java
21lines · modeblame
49a86dfbKirk Pepperdine4 years ago | 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. | |
| 3 | | |
| 4 | /* | |
| 5 | Module for the purposes of housing tests that need to be in a module in order to run. | |
| 6 | */ | |
| 7 | open module com.microsoft.gctoolkit.integration { | |
| 8 | | |
| 9 | requires com.microsoft.gctoolkit.api; | |
| 10 | requires java.logging; | |
| 11 | | |
| 12 | exports com.microsoft.gctoolkit.integration.aggregation to | |
e74e68d3Kirk Pepperdine3 years ago | 13 | com.microsoft.gctoolkit.api; |
49a86dfbKirk Pepperdine4 years ago | 14 | |
| 15 | provides com.microsoft.gctoolkit.aggregator.Aggregation with | |
| 16 | com.microsoft.gctoolkit.integration.aggregation.HeapOccupancyAfterCollectionSummary, | |
| 17 | com.microsoft.gctoolkit.integration.aggregation.PauseTimeSummary, | |
97663a03Kirk Pepperdine3 years ago | 18 | com.microsoft.gctoolkit.integration.aggregation.CollectionCycleCountsSummary, |
| 19 | com.microsoft.gctoolkit.integration.shared.OneRuntimeReport, | |
| 20 | com.microsoft.gctoolkit.integration.shared.TwoRuntimeReport; | |
49a86dfbKirk Pepperdine4 years ago | 21 | } |