microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.3

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/pom.xml

39lines · 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 <parent>
4 <artifactId>gctoolkit</artifactId>
5 <groupId>com.microsoft.gctoolkit</groupId>
6 <version>2.0.3</version>
7 <relativePath>../pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10
11 <artifactId>gctoolkit-core</artifactId>
12 <packaging>pom</packaging>
13 <modules>
14 <module>api</module>
15 <module>parser</module>
16 <module>vertx</module>
17 </modules>
18
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-javadoc-plugin</artifactId>
24 <version>${maven.javadoc-plugin.version}</version>
25 <configuration>
26 <excludePackageNames>
27 com.microsoft.gctoolkit.parser.**,com.microsoft.gctoolkit.vertx.**,com.microsoft.gctoolkit.sample.**
28 </excludePackageNames>
29 </configuration>
30 </plugin>
31
32 <plugin>
33 <groupId>org.jacoco</groupId>
34 <artifactId>jacoco-maven-plugin</artifactId>
35 </plugin>
36 </plugins>
37 </build>
38
39</project>
40