microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
core/parser/src/main/java/module-info.java
37lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | /** |
| 5 | * Contains the Censum GC log parser. The parser is an internal module. |
| 6 | */ |
| 7 | module censum.parser { |
| 8 | |
| 9 | exports com.microsoft.censum.parser to |
| 10 | censum.parser.test, |
| 11 | censum.vertx; |
| 12 | |
| 13 | exports com.microsoft.censum.parser.collection to |
| 14 | censum.parser.test; |
| 15 | |
| 16 | exports com.microsoft.censum.parser.io to |
| 17 | censum.parser.test, |
| 18 | censum.vertx; |
| 19 | |
| 20 | exports com.microsoft.censum.parser.jvm to |
| 21 | censum.parser.test, |
| 22 | censum.vertx; |
| 23 | |
| 24 | exports com.microsoft.censum.parser.unified to |
| 25 | censum.parser.test, |
| 26 | censum.vertx; |
| 27 | |
| 28 | exports com.microsoft.censum.parser.vmops to |
| 29 | censum.parser.test, |
| 30 | censum.vertx; |
| 31 | exports com.microsoft.censum.parser.datatype to censum.parser.test, censum.vertx; |
| 32 | |
| 33 | requires censum.api; |
| 34 | requires java.logging; |
| 35 | |
| 36 | |
| 37 | } |