microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
11cd0c0d4ea83f9017065cd67dfe38aba722091e

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/vertx/pom.xml

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