microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.8

Branches

Tags

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

Clone

HTTPS

Download ZIP

parser/pom.xml

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