microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
325025287eb158b4be32d8bea609c41453be0d50

Branches

Tags

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

Clone

HTTPS

Download ZIP

api/pom.xml

43lines · 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
16 <build>
17 <plugins>
18 <plugin>
19 <artifactId>maven-surefire-plugin</artifactId>
20 <configuration>
21 <argLine>
22 --add-opens com.microsoft.gctoolkit.api/com.microsoft.gctoolkit.time=ALL-UNNAMED
23 --add-opens com.microsoft.gctoolkit.api/com.microsoft.gctoolkit.io=ALL-UNNAMED
24 </argLine>
25 </configuration>
26 </plugin>
27 </plugins>
28 </build>
29
30
31 <dependencies>
32 <dependency>
33 <groupId>org.junit.jupiter</groupId>
34 <artifactId>junit-jupiter-api</artifactId>
35 <scope>test</scope>
36 </dependency>
37 <dependency>
38 <groupId>org.junit.jupiter</groupId>
39 <artifactId>junit-jupiter-engine</artifactId>
40 <scope>test</scope>
41 </dependency>
42 </dependencies>
43</project>