microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
sample/src/main/java/module-info.java
16lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | /** |
| 5 | * Contains an Aggregator and an Aggregation |
| 6 | */ |
| 7 | module censum.sample { |
| 8 | |
| 9 | provides com.microsoft.censum.aggregator.Aggregation with com.microsoft.censum.sample.aggregation.HeapOccupancyAfterCollectionSummary; |
| 10 | exports com.microsoft.censum.sample.aggregation to censum.vertx; |
| 11 | |
| 12 | requires censum.api; |
| 13 | requires censum.vertx; |
| 14 | requires java.logging; |
| 15 | |
| 16 | } |
| 17 | |