microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
3051a436124be81ac3012dd78e4dcc3fa7e265f5

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/pom.xml

40lines · 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>censum-parent</artifactId>
5 <groupId>com.microsoft.censum</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 <module>sample</module>
18 </modules>
19
20 <properties>
21 <maven.compiler.source>11</maven.compiler.source>
22 <maven.compiler.target>11</maven.compiler.target>
23 </properties>
24
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-javadoc-plugin</artifactId>
30 <version>3.3.0</version>
31 <configuration>
32 <excludePackageNames>
33 com.microsoft.censum.parser,com.microsoft.censum.vertx
34 </excludePackageNames>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
39
40</project>
41