microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
6ca506d948ef3cfbeb5841ab855d7e02eb08fab6

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

24lines · modeblame

49a86dfbKirk Pepperdine4 years ago1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/*
5Module 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
9requires com.microsoft.gctoolkit.api;
10requires com.microsoft.gctoolkit.parser;
11requires com.microsoft.gctoolkit.vertx;
12requires java.logging;
13
5e1274bcKirk Pepperdine4 years ago14// exports com.microsoft.gctoolkit.integration.aggregation;
15// exports com.microsoft.gctoolkit.integration.collections;
49a86dfbKirk Pepperdine4 years ago16
17exports com.microsoft.gctoolkit.integration.aggregation to
18com.microsoft.gctoolkit.vertx;
19
20provides com.microsoft.gctoolkit.aggregator.Aggregation with
21com.microsoft.gctoolkit.integration.aggregation.HeapOccupancyAfterCollectionSummary,
22com.microsoft.gctoolkit.integration.aggregation.PauseTimeSummary,
23com.microsoft.gctoolkit.integration.aggregation.CollectionCycleCountsSummary;
24}