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

parser/pom.xml

44lines · 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>2.0.4-SNAPSHOT</version>
9 <relativePath>../pom.xml</relativePath>
10 </parent>
11
12 <artifactId>gctoolkit-parser</artifactId>
13
14 <dependencies>
15 <dependency>
16 <groupId>com.microsoft.gctoolkit</groupId>
17 <artifactId>gctoolkit-api</artifactId>
18 </dependency>
19 <dependency>
20 <groupId>org.junit.jupiter</groupId>
21 <artifactId>junit-jupiter-api</artifactId>
22 <scope>test</scope>
23 </dependency>
24 <dependency>
25 <groupId>org.junit.jupiter</groupId>
26 <artifactId>junit-jupiter-engine</artifactId>
27 <scope>test</scope>
28 </dependency>
29 </dependencies>
30
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-surefire-plugin</artifactId>
36 <configuration>
37 <parallel>classes</parallel>
38 <perCoreThreadCount>true</perCoreThreadCount>
39 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43
44</project>
45