microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
3de29d98a44dd9ae0d20fda0ecdf61f06e987b94

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.1-SNAPSHOT</version>
7 <relativePath>../pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10
11 <artifactId>core</artifactId>
12 <packaging>pom</packaging>
13 <modules>
14 <module>api</module>
15 <module>parser</module>
16 <module>vertx</module>
17 </modules>
18
19 <properties>
20 <maven.compiler.source>11</maven.compiler.source>
21 <maven.compiler.target>11</maven.compiler.target>
22 </properties>
23
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-javadoc-plugin</artifactId>
29 <version>3.3.0</version>
30 <configuration>
31 <excludePackageNames>
32 com.microsoft.gctoolkit.parser.**,com.microsoft.censum.vertx.**,com.microsoft.censum.sample.**
33 </excludePackageNames>
34 </configuration>
35 </plugin>
36 </plugins>
37 </build>
38
39</project>