microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
core/vertx/src/main/java/module-info.java
31lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | import com.microsoft.censum.jvm.JavaVirtualMachine; |
| 5 | import com.microsoft.censum.vertx.jvm.DefaultJavaVirtualMachine; |
| 6 | |
| 7 | /** |
| 8 | * Contains a vertx based implementation of Censum. The vertx implementation is an internal module. |
| 9 | * @provides com.microsoft.censum.jvm.JavaVirtualMachine |
| 10 | */ |
| 11 | module censum.vertx { |
| 12 | exports com.microsoft.censum.vertx to |
| 13 | censum.vertx.test; |
| 14 | |
| 15 | exports com.microsoft.censum.vertx.aggregator to |
| 16 | censum.vertx.test; |
| 17 | |
| 18 | exports com.microsoft.censum.vertx.io to |
| 19 | censum.vertx.test; |
| 20 | |
| 21 | exports com.microsoft.censum.vertx.jvm to |
| 22 | censum.api, |
| 23 | censum.vertx.test; |
| 24 | |
| 25 | provides JavaVirtualMachine with DefaultJavaVirtualMachine; |
| 26 | |
| 27 | requires censum.api; |
| 28 | requires censum.parser; |
| 29 | requires java.logging; |
| 30 | requires io.vertx.core; |
| 31 | } |