microsoft/gctoolkit

Public

mirrored fromhttps://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.12

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

25lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/*
5 Module for the purposes of housing tests that need to be in a module in order to run.
6 */
7open module com.microsoft.gctoolkit.integration {
8
9 requires com.microsoft.gctoolkit.api;
10 requires com.microsoft.gctoolkit.parser;
11 requires com.microsoft.gctoolkit.vertx;
12 requires java.logging;
13
14 exports com.microsoft.gctoolkit.integration.aggregation to
15 com.microsoft.gctoolkit.vertx;
16 exports com.microsoft.gctoolkit.integration.shared to
17 com.microsoft.gctoolkit.vertx;
18
19 provides com.microsoft.gctoolkit.aggregator.Aggregation with
20 com.microsoft.gctoolkit.integration.aggregation.HeapOccupancyAfterCollectionSummary,
21 com.microsoft.gctoolkit.integration.aggregation.PauseTimeSummary,
22 com.microsoft.gctoolkit.integration.aggregation.CollectionCycleCountsSummary,
23 com.microsoft.gctoolkit.integration.shared.OneRuntimeReport,
24 com.microsoft.gctoolkit.integration.shared.TwoRuntimeReport;
25}