microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
16da35f31696a25ebfa4653047ace71c30ddf651

Branches

Tags

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

Clone

HTTPS

Download ZIP

api/pom.xml

31lines · modecode

1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>com.microsoft.gctoolkit</groupId>
9 <artifactId>gctoolkit</artifactId>
10 <version>2.0.4-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>gctoolkit-api</artifactId>
15 <name>GCToolKit API</name>
16 <description>Model APIs for aggregator, events, inputs.</description>
17 <url>${project.parent.url}</url>
18
19 <dependencies>
20 <dependency>
21 <groupId>org.junit.jupiter</groupId>
22 <artifactId>junit-jupiter-api</artifactId>
23 <scope>test</scope>
24 </dependency>
25 <dependency>
26 <groupId>org.junit.jupiter</groupId>
27 <artifactId>junit-jupiter-engine</artifactId>
28 <scope>test</scope>
29 </dependency>
30 </dependencies>
31</project>
32