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