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