microsoft/gctoolkit

Public

mirrored from https://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
30fcec7ec24d9843759d69e8597d457c63a33fcf

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

vertx/src/main/java/module-info.java

20lines · modeblame

3ce8e8bbKirk Pepperdine4 years ago1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/**
5509b357Kirk Pepperdine4 years ago5* Contains a vertx based implementation of GCToolKit. The vertx implementation is an internal module.
6* @provides com.microsoft.gctoolkit.jvm.JavaVirtualMachine
3ce8e8bbKirk Pepperdine4 years ago7*/
8b6201adChristian Stein4 years ago8module com.microsoft.gctoolkit.vertx {
d96119e6kabutz4 years ago9requires com.microsoft.gctoolkit.api;
10requires com.microsoft.gctoolkit.parser;
11requires io.vertx.core;
12requires java.logging;
13
5509b357Kirk Pepperdine4 years ago14exports com.microsoft.gctoolkit.vertx.jvm to
32502528kabutz4 years ago15com.microsoft.gctoolkit.api;
3ce8e8bbKirk Pepperdine4 years ago16
d96119e6kabutz4 years ago17provides com.microsoft.gctoolkit.jvm.JavaVirtualMachine with
18com.microsoft.gctoolkit.vertx.jvm.DefaultJavaVirtualMachine;
3ce8e8bbKirk Pepperdine4 years ago19
20}