microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.5

Branches

Tags

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

Clone

HTTPS

Download ZIP

vertx/pom.xml

42lines · modecode

1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>com.microsoft.gctoolkit</groupId>
7 <artifactId>gctoolkit</artifactId>
8 <version>2.0.5</version>
9 <relativePath>../pom.xml</relativePath>
10 </parent>
11
12 <artifactId>gctoolkit-vertx</artifactId>
13 <name>GCToolKit Vertx</name>
14 <description>Messaging backplane for connecting GC log parsers and JVM event consumers.</description>
15 <url>${project.parent.url}</url>
16
17 <dependencies>
18 <dependency>
19 <groupId>com.microsoft.gctoolkit</groupId>
20 <artifactId>gctoolkit-api</artifactId>
21 </dependency>
22 <dependency>
23 <groupId>com.microsoft.gctoolkit</groupId>
24 <artifactId>gctoolkit-parser</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>io.vertx</groupId>
28 <artifactId>vertx-core</artifactId>
29 <version>4.1.5</version>
30 </dependency>
31 <dependency>
32 <groupId>org.junit.jupiter</groupId>
33 <artifactId>junit-jupiter-api</artifactId>
34 <scope>test</scope>
35 </dependency>
36 <dependency>
37 <groupId>org.junit.jupiter</groupId>
38 <artifactId>junit-jupiter-engine</artifactId>
39 <scope>test</scope>
40 </dependency>
41 </dependencies>
42</project>
43