microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
sample/src/main/java/module-info.java
24lines · modeblame
5188e3fdKirk Pepperdine4 years ago | 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. | |
| 3 | | |
| 4 | /** | |
| 5 | * Contains an Aggregator and an Aggregation | |
| 6 | */ | |
aa986897Christian Stein4 years ago | 7 | module com.microsoft.gctoolkit.sample { |
8b6201adChristian Stein4 years ago | 8 | requires com.microsoft.gctoolkit.api; |
8d88dfc6Bruno Borges4 years ago | 9 | requires com.microsoft.gctoolkit.parser; |
8b6201adChristian Stein4 years ago | 10 | requires com.microsoft.gctoolkit.vertx; |
5188e3fdKirk Pepperdine4 years ago | 11 | requires java.logging; |
| 12 | | |
8d88dfc6Bruno Borges4 years ago | 13 | exports com.microsoft.gctoolkit.sample; |
6df51a36David Grieve4 years ago | 14 | |
d96119e6kabutz4 years ago | 15 | exports com.microsoft.gctoolkit.sample.aggregation to |
49a86dfbKirk Pepperdine4 years ago | 16 | com.microsoft.gctoolkit.vertx, |
| 17 | com.microsoft.gctoolkit.integration; | |
| 18 | exports com.microsoft.gctoolkit.sample.collections; | |
d96119e6kabutz4 years ago | 19 | |
| 20 | provides com.microsoft.gctoolkit.aggregator.Aggregation with | |
49a86dfbKirk Pepperdine4 years ago | 21 | com.microsoft.gctoolkit.sample.aggregation.HeapOccupancyAfterCollectionSummary, |
| 22 | com.microsoft.gctoolkit.sample.aggregation.PauseTimeSummary, | |
| 23 | com.microsoft.gctoolkit.sample.aggregation.CollectionCycleCountsSummary; | |
5188e3fdKirk Pepperdine4 years ago | 24 | } |