microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-3.0.4

Branches

Tags

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

Clone

HTTPS

Download ZIP

vertx/pom.xml

38lines · 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>3.0.4</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>io.vertx</groupId>
24 <artifactId>vertx-core</artifactId>
25 <version>4.4.0</version>
26 </dependency>
27 <dependency>
28 <groupId>org.junit.jupiter</groupId>
29 <artifactId>junit-jupiter-api</artifactId>
30 <scope>test</scope>
31 </dependency>
32 <dependency>
33 <groupId>org.junit.jupiter</groupId>
34 <artifactId>junit-jupiter-engine</artifactId>
35 <scope>test</scope>
36 </dependency>
37 </dependencies>
38</project>
39