-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
235 lines (234 loc) · 8.94 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?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/maven-v4_0_0.xsd">
<!-- ************ Component identity and specific information -->
<groupId>org.openflexo</groupId>
<version>0.5</version>
<modelVersion>4.0.0</modelVersion>
<artifactId>openflexo-root-pom</artifactId>
<name>Openflexo-Root-Pom</name>
<packaging>pom</packaging>
<modules>
<module>openflexo-production</module>
<module>tools-configuration</module>
<module>packaging-tools</module>
</modules>
<description>This pom is used to drive production of openflexo-production and tools-configuration, and is not root
of any other pom.xml in the OpenFlexo infrastructure</description>
<scm>
<connection>scm:git:ssh://[email protected]/openflexo-team/openflexo-production.git</connection>
<url>https://github.com/openflexo-team/openflexo-production</url>
<tag>0.5</tag>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://bugs.openflexo.org/browse/Openflexo_Production</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://jenkins.openflexo.org/</url>
</ciManagement>
<organization>
<name>Openflexo</name>
<url>https://www.openflexo.org</url>
</organization>
<!-- ************ Global Properties common to all files -->
<properties>
<openflexo-production.logo>https://media.openflexo.org/images/components/openflexo-production_64x64.png</openflexo-production.logo>
<!--maven plugins versions -->
<wagonssh.version>2.12</wagonssh.version>
<!-- reporting tools -->
<mavensite.version>3.4</mavensite.version>
<project.info.version>2.8</project.info.version>
<mavenrelease.version>2.5</mavenrelease.version>
<sitedeploy.dir>/home/www/sites/openflexo-production</sitedeploy.dir>
</properties>
<!--******************* LICENSE INFO COMMON TO ALL COMPONENTS -->
<licenses>
<license>
<name>GPL V3</name>
<url>http://www.gnu.org/copyleft/gpl.html</url>
<distribution />
<comments />
</license>
<license>
<name>EUPL</name>
<url>https://joinup.ec.europa.eu/software/page/eupl</url>
<distribution />
<comments />
</license>
</licenses>
<!--******************* Repositories used to publish versions -->
<distributionManagement>
<snapshotRepository>
<id>openflexo-snapshot</id>
<name>openflexo Snapshot repository</name>
<url>https://maven.openflexo.org/artifactory/openflexo-snapshot/</url>
</snapshotRepository>
<repository>
<id>openflexo-release</id>
<name>openflexo Release repository</name>
<url>https://maven.openflexo.org/artifactory/openflexo-release/</url>
</repository>
</distributionManagement>
<!-- ************ Build Configuration -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${mavensite.version}</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>${wagonssh.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${mavenrelease.version}</version>
<configuration>
<tagNameFormat>${project.name}-@{project.version}</tagNameFormat>
<addSchema>true</addSchema>
<branchName>${developmentVersion}</branchName>
<remoteTagging>false</remoteTagging>
<!-- permanent configuration -->
<!-- update the versions in the branches -->
<updateBranchVersions>true</updateBranchVersions>
<updateWorkingCopyVersions>false</updateWorkingCopyVersions>
<updateVersionsToSnapshot>true</updateVersionsToSnapshot>
<!-- do not update dependencies automatically -->
<updateDependencies>false</updateDependencies>
<!-- automatically assign parent version so modules -->
<autoVersionSubmodules>true</autoVersionSubmodules>
<!-- temp parameters to be removed when tests are done -->
<pushChanges>true</pushChanges>
<localCheckout>true</localCheckout>
</configuration>
</plugin>
</plugins>
</build>
<!--******************* Reporting Configuration -->
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>${changes.version}</version>
<configuration>
<resolutionIds>Fixed</resolutionIds>
<statusIds>Resolved,Closed</statusIds>
<filter>status in (5,6) AND resolution=1 AND sorter/field=issuetype
AND sorter/order=ASC ${changes.componentfilter}</filter>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>jira-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${project.info.version}</version>
<inherited>true</inherited>
<configuration>
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
<dependencyLocationsEnabled>true</dependencyLocationsEnabled>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>summary</report>
<!-- <report>dependencies</report> -->
<report>dependency-convergence</report>
<report>dependency-info</report>
<report>distribution-management</report>
<report>issue-tracking</report>
<report>project-team</report>
<report>mailing-list</report>
<report>cim</report>
<report>license</report>
<report>scm</report>
<report>index</report>
<!-- project-info-reports:cim is used to generate the Project Continuous
Integration System report. project-info-reports:dependencies is used to generate
the Project Dependencies report. project-info-reports:dependency-convergence
is used to generate the Project Dependency Convergence report for reactor
builds. project-info-reports:dependency-info (new in 2.5) is used to generate
code snippets to be added to build tools. project-info-reports:dependency-management
is used to generate the Project DependencyManagement report. project-info-reports:distribution-management
is used to generate the Project Distribution Management report. project-info-reports:help
is used to display help information on the Project Info Reports Plugin. project-info-reports:index
is used to generate the Project index page. project-info-reports:issue-tracking
is used to generate the Project Issue Tracking report. project-info-reports:license
is used to generate the Project License report. project-info-reports:mailing-list
is used to generate the Project Mailing List report. project-info-reports:modules
is used to generate the Project Modules report. project-info-reports:plugin-management
is used to generate the Project PluginManagement report. project-info-reports:plugins
is used to generate the Project Plugins report. project-info-reports:project-team
is used to generate the Project Team report. project-info-reports:scm is
used to generate the Project Source Code Management report. project-info-reports:summary
is used to generate the Project information reports summary. -->
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</reporting>
<!-- ***************** Profiles -->
<profiles>
<profile>
<id>snapshot-profile</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<!-- ************ Places where to upload files for component Maven site -->
<distributionManagement>
<site>
<id>openflexo-production.website</id>
<url>scp://openflexo.org/home/www/sites/openflexo-production/SNAPSHOT/</url>
</site>
</distributionManagement>
</profile>
<profile>
<id>RC-profile</id>
<activation>
<property>
<name>performRC</name>
</property>
</activation>
<!-- ************ Places where to upload files for component Maven site -->
<distributionManagement>
<site>
<id>openflexo-production.website</id>
<url>scp://openflexo.org/home/www/sites/openflexo-production/SNAPSHOT/</url>
</site>
</distributionManagement>
</profile>
<profile>
<id>release-profile</id>
<activation>
<property>
<name>performRelease</name>
</property>
</activation>
<!-- ************ Places where to upload files for component Maven site -->
<distributionManagement>
<site>
<id>openflexo-production.website</id>
<url>scp://openflexo.org/home/www/sites/openflexo-production/${project.version}/</url>
</site>
</distributionManagement>
</profile>
</profiles>
</project>