microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.3

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/vertx/pom.xml

40lines · 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-core</artifactId>
8 <version>2.0.3</version>
9 </parent>
10
11 <artifactId>gctoolkit-vertx</artifactId>
12
13 <dependencies>
14 <dependency>
15 <groupId>com.microsoft.gctoolkit</groupId>
16 <artifactId>gctoolkit-api</artifactId>
17 <version>${project.version}</version>
18 </dependency>
19 <dependency>
20 <groupId>com.microsoft.gctoolkit</groupId>
21 <artifactId>gctoolkit-parser</artifactId>
22 <version>${project.version}</version>
23 </dependency>
24 <dependency>
25 <groupId>io.vertx</groupId>
26 <artifactId>vertx-core</artifactId>
27 <version>4.1.2</version>
28 </dependency>
29 <dependency>
30 <groupId>org.junit.jupiter</groupId>
31 <artifactId>junit-jupiter-api</artifactId>
32 <scope>test</scope>
33 </dependency>
34 <dependency>
35 <groupId>org.junit.jupiter</groupId>
36 <artifactId>junit-jupiter-engine</artifactId>
37 <scope>test</scope>
38 </dependency>
39 </dependencies>
40</project>