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