microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e2d06700e024773fe3f65570fd86b09e975acf34

Branches

Tags

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

Clone

HTTPS

Download ZIP

pom.xml

176lines · 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 <groupId>com.microsoft.censum</groupId>
6 <artifactId>censum-parent</artifactId>
7 <packaging>pom</packaging>
8 <version>2.0.1-SNAPSHOT</version>
9
10 <name>GCToolKit</name>
11 <description>GC log parsing utilities</description>
12 <url>https://github.com/Microsoft/gctoolkit</url>
13
14 <organization>
15 <name>Microsoft Corporation</name>
16 <url>http://microsoft.com</url>
17 </organization>
18
19 <licenses>
20 <license>
21 <name>MIT License</name>
22 <url>http://opensource.org/licenses/MIT</url>
23 <distribution>repo</distribution>
24 </license>
25 </licenses>
26
27 <scm>
28 <connection>scm:git:git@github.com:microsoft/gctoolkit.git</connection>
29 <developerConnection>scm:git:git@github.com:microsoft/gctoolkit.git</developerConnection>
30 <url>https://github.com/microsoft/gctoolkit</url>
31 <tag>censum-parent-2.0.0</tag>
32 </scm>
33
34 <developers>
35 <developer>
36 <id>microsoft</id>
37 <name>Microsoft Corporation</name>
38 </developer>
39 </developers>
40
41 <issueManagement>
42 <system>GitHub</system>
43 <url>https://github.com/microsoft/gctoolkit/issues</url>
44 </issueManagement>
45
46 <repositories>
47 <repository>
48 <id>central</id>
49 <url>https://repo1.maven.org/maven2</url>
50 </repository>
51 <repository>
52 <id>github</id>
53 <url>https://maven.pkg.github.com/microsoft/*</url>
54 <snapshots>
55 <enabled>true</enabled>
56 </snapshots>
57 </repository>
58 </repositories>
59
60 <distributionManagement>
61 <repository>
62 <id>github</id>
63 <name>GC Toolkit packages</name>
64 <url>https://maven.pkg.github.com/microsoft/gctoolkit</url>
65 </repository>
66 </distributionManagement>
67
68 <modules>
69 <module>core</module>
70 <module>sample</module>
71 </modules>
72
73 <properties>
74 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
75 <jdk.version>11</jdk.version>
76 </properties>
77
78 <dependencyManagement>
79 <dependencies>
80 <dependency>
81 <groupId>com.microsoft.gctoolkit</groupId>
82 <artifactId>censum-testdata</artifactId>
83 <version>1.0.0</version>
84 <type>zip</type>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.junit.jupiter</groupId>
89 <artifactId>junit-jupiter-engine</artifactId>
90 <version>5.7.2</version>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.junit.jupiter</groupId>
95 <artifactId>junit-jupiter-api</artifactId>
96 <version>5.7.2</version>
97 <scope>test</scope>
98 </dependency>
99 </dependencies>
100 </dependencyManagement>
101
102 <build>
103 <pluginManagement>
104 <plugins>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-compiler-plugin</artifactId>
108 <version>3.8.1</version>
109 <configuration>
110 <source>${jdk.version}</source>
111 <target>${jdk.version}</target>
112 </configuration>
113 </plugin>
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-jar-plugin</artifactId>
117 <version>3.2.0</version>
118 </plugin>
119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-surefire-plugin</artifactId>
122 <version>3.0.0-M5</version>
123 </plugin>
124 </plugins>
125 </pluginManagement>
126 <plugins>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-dependency-plugin</artifactId>
130 <version>3.1.1</version>
131 <inherited>false</inherited>
132 <executions>
133 <execution>
134 <id>download-test-logs</id>
135 <phase>process-test-resources</phase>
136 <goals>
137 <goal>unpack</goal>
138 </goals>
139 <configuration>
140 <skip>${skipUnpack}</skip>
141 <artifactItems>
142 <artifactItem>
143 <groupId>com.microsoft.censum</groupId>
144 <artifactId>censum-gclogs</artifactId>
145 <version>1.0.0</version>
146 <type>zip</type>
147 </artifactItem>
148 <artifactItem>
149 <groupId>com.microsoft.censum</groupId>
150 <artifactId>censum-gclogs-rolling</artifactId>
151 <version>1.0.0</version>
152 <type>zip</type>
153 </artifactItem>
154 <artifactItem>
155 <groupId>com.microsoft.censum</groupId>
156 <artifactId>censum-shenandoah-logs</artifactId>
157 <version>1.0.0</version>
158 <type>zip</type>
159 </artifactItem>
160 <artifactItem>
161 <groupId>com.microsoft.censum</groupId>
162 <artifactId>censum-zgc-logs</artifactId>
163 <version>1.0.0</version>
164 <type>zip</type>
165 </artifactItem>
166 </artifactItems>
167 <includes>**/*</includes>
168 <outputDirectory>${project.basedir}/gclogs
169 </outputDirectory>
170 </configuration>
171 </execution>
172 </executions>
173 </plugin>
174 </plugins>
175 </build>
176</project>
177