-
Notifications
You must be signed in to change notification settings - Fork 8
/
pom.xml
87 lines (76 loc) · 2.7 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="UTF-8"?>
<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 http://www.w3.org/2001/XMLSchema-instance https://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.fwmotion</groupId>
<artifactId>3scale-cms-tools-parent</artifactId>
<version>2.0.2-SNAPSHOT</version>
<relativePath>./parent</relativePath>
</parent>
<artifactId>3scale-cms-tools-aggregate</artifactId>
<version>2.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>3scale CMS Tools</name>
<url>https://FwMotion.github.io/3scale-cms/aggregate/</url>
<description><![CDATA[
Maven project to group multiple submodules related to 3scale's Content
Management System API, and to handle build ordering and aggregate test
reporting
]]></description>
<properties>
<project.build.outputTimestamp>1699478719</project.build.outputTimestamp>
<maven.top-level-basedir>${project.basedir}</maven.top-level-basedir>
</properties>
<scm>
<url>https://FwMotion.github.io/3scale-cms/</url>
<connection>scm:git:https://github.com/FwMotion/3scale-cms.git</connection>
<developerConnection>scm:git:https://github.com/FwMotion/3scale-cms.git</developerConnection>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<site>
<id>fwmotion.github.io</id>
<url>https://FwMotion.github.io/3scale-cms/aggregate/</url>
</site>
</distributionManagement>
<modules>
<module>parent</module>
<module>openapi-generator-template</module>
<module>rest-client</module>
<module>cli</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- Don't deploy this -aggregate project -->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<excludeDefaults>true</excludeDefaults>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>licenses</report>
<report>modules</report>
<report>plugins</report>
<report>scm</report>
<report>summary</report>
<report>team</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>