-
Notifications
You must be signed in to change notification settings - Fork 70
/
pom.xml
365 lines (338 loc) · 17.4 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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<?xml version="1.0"?><!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- ====================================================================== -->
<!-- P A R E N T P R O J E C T D E S C R I P T I O N -->
<!-- ====================================================================== -->
<parent>
<groupId>org.apache.jackrabbit.vault</groupId>
<artifactId>parent</artifactId>
<relativePath>parent/pom.xml</relativePath>
<version>${revision}</version>
</parent>
<!-- ====================================================================== -->
<!-- P R O J E C T D E S C R I P T I O N -->
<!-- ====================================================================== -->
<artifactId>jackrabbit-filevault</artifactId>
<packaging>pom</packaging>
<name>Apache Jackrabbit FileVault (Reactor Project)</name>
<!-- ====================================================================== -->
<!-- M O D U L E S -->
<!-- ====================================================================== -->
<modules>
<module>target-osgi-environment</module>
<module>parent</module>
<module>vault-core</module>
<module>vault-core-it</module>
<module>vault-diff</module>
<module>vault-rcp</module>
<module>vault-davex</module>
<module>vault-vlt</module>
<module>vault-cli</module>
<module>vault-hook-example</module>
<module>vault-hook-externalclass-test</module>
<module>vault-sync</module>
<module>vault-validation</module>
</modules>
<properties>
<project.build.outputTimestamp>2024-09-20T15:33:13Z</project.build.outputTimestamp>
<!-- this project uses cross-module reports with one aggregate, https://docs.sonarsource.com/sonarcloud/enriching/test-coverage/java-test-coverage/#add-coverage-in-a-multi-module-maven-project -->
<sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/vault-coverage-aggregate/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
</properties>
<distributionManagement>
<site>
<id>jackrabbit.filevault.site-deploy</id>
<url>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/site/live/filevault</url>
</site>
</distributionManagement>
<!-- ====================================================================== -->
<!-- B U I L D -->
<!-- ====================================================================== -->
<build>
<pluginManagement>
<plugins>
<!-- ====================================================================== -->
<!-- J A V A D O C P L U G I N -->
<!-- ====================================================================== -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!-- Default configuration for all reports -->
<windowtitle>Apache Jackrabbit FileVault ${project.version} API</windowtitle>
<doctitle>Apache Jackrabbit FileVault ${project.version} API</doctitle>
<excludePackageNames>
org.apache.jackrabbit.vault.cli*,org.apache.jackrabbit.vault.davex,*.impl*,org.apache.jackrabbit.vault.util.xml,org.apache.jackrabbit.vault.vlt.actions,org.apache.jackrabbit.vault.vlt.meta.*,org.apache.jackrabbit.vault.packaging.hotfix,org.apache.jackrabbit.vault.validation.impl*,org.apache.jackrabbit.vault.validation.spi.impl
</excludePackageNames>
<reportOutputDirectory>${basedir}/vault-doc/target/site</reportOutputDirectory>
<detectLinks>true</detectLinks>
<detectJavaApiLink>true</detectJavaApiLink>
<links>
<link>https://s.apache.org/jcr-2.0-javadoc</link>
<link>https://jackrabbit.apache.org/api/2.20</link>
<link>https://jackrabbit.apache.org/oak/docs/apidocs</link>
</links>
<validateLinks>true</validateLinks>
<doclint>all</doclint>
<verbose>false</verbose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludesFile>${project.basedir}/.ratignore</excludesFile>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<generateReports>true</generateReports>
<skip>false</skip>
<relativizeDecorationLinks>false</relativizeDecorationLinks>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<executions>
<execution>
<id>scm-publish</id>
<phase>site-deploy</phase>
<goals>
<goal>publish-scm</goal>
</goals>
</execution>
</executions>
<configuration>
<content>target/site</content>
<checkinComment>@trivial: Site checkin for project ${project.name}-${project.version}
</checkinComment>
<ignorePathsToDelete>
<ignorePathToDelete>apidocs</ignorePathToDelete>
</ignorePathsToDelete>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/site</outputDirectory>
</configuration>
</execution>
<execution>
<id>copy-xsds</id>
<phase>pre-site</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>vault-validation/src/main/resources</directory>
<includes>
<include>*.xsd</include>
</includes>
</resource>
</resources>
<outputDirectory>${project.build.directory}/site/xsd</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/site/markdown</directory>
<includes>
<include>*.png</include>
<include>*.jpg</include>
<include>*.jpeg</include>
<include>*.gif</include>
</includes>
</resource>
</resources>
</build>
<!-- ====================================================================== -->
<!-- R E P O R T I N G -->
<!-- ====================================================================== -->
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<!-- only generate aggregate report (not main and test, https://maven.apache.org/plugins/maven-javadoc-plugin/examples/selective-javadocs-report.html) -->
<id>aggregate</id>
<inherited>false</inherited>
<reports>
<report>aggregate</report>
</reports>
</reportSet>
<reportSet>
<id>default</id>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<!-- don't generate index, due to the links to modules not having sites -->
<report>team</report>
<report>mailing-lists</report>
<report>ci-management</report>
<report>issue-management</report>
<report>licenses</report>
<report>dependency-info</report>
<report>scm</report>
<report>distribution-management</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<artifactId>org.apache.jackrabbit.vault</artifactId>
<packaging>jar</packaging>
</configuration>
</plugin>
</plugins>
</reporting>
<!-- ====================================================================== -->
<!-- P R O F I L E S -->
<!-- ====================================================================== -->
<profiles>
<profile>
<id>apache-release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>aggregate-jar</id>
<goals>
<goal>aggregate-jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>check-release-notes-updated</id>
<goals>
<goal>run</goal>
</goals>
<phase>validate</phase>
<configuration>
<target>
<fail message="RELEASE-NOTES.txt doesn't contain the version to be released (${project.version}), it needs to be updated prior to each release manually!">
<condition>
<not>
<resourcecontains resource="${basedir}/RELEASE-NOTES.txt" substring="${project.version}" />
</not>
</condition>
</fail>
</target>
</configuration>
</execution>
<!-- JCR-2455: Automatic staging of non-Maven release artifacts -->
<execution>
<id>prepare-staging-in-asf-dist</id>
<goals>
<goal>run</goal>
</goals>
<phase>deploy</phase>
<configuration>
<target>
<mkdir dir="${basedir}/target/${project.version}" />
<copy todir="${basedir}/target/${project.version}" flatten="true">
<fileset dir="${basedir}">
<include name="RELEASE-NOTES.txt" />
<!-- this includes the SHA512 checksum being generated by ASF parent -->
<include name="target/*-source-release.zip*" />
</fileset>
</copy>
<echo file="${basedir}/target/vote.txt"><![CDATA[
From: ${username}@apache.org
Subject: [VOTE] Release Apache Jackrabbit FileVault ${project.version}
A candidate for the Jackrabbit FileVault ${project.version} release is available at:
https://dist.apache.org/repos/dist/dev/jackrabbit/filevault/${project.version}/
The release candidate is a zip archive of the sources in:
https://github.com/apache/jackrabbit-filevault/tree/jackrabbit-filevault-${project.version}/
The release notes can be found in JIRA at https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12314920&version=....
The command for running automated checks against this release candidate is:
$ sh check-release.sh filevault ${project.version}
(leveraging the script from https://dist.apache.org/repos/dist/dev/jackrabbit/check-release.sh)
A staged Maven repository is available for review at:
https://repository.apache.org/content/repositories/orgapachejackrabbit-...
Please vote on releasing this package as Apache Jackrabbit FileVault ${project.version}.
The vote is open for a minimum of 72 hours during business days and passes
if a majority of at least three +1 Jackrabbit PMC votes are cast.
The vote fails if not enough votes are cast after 1 week (5 business days).
[ ] +1 Release this package as Apache Jackrabbit FileVault ${project.version}
[ ] -1 Do not release this package because...${line.separator}
]]>
</echo>
<echo />
<echo><![CDATA[
The release candidate has been prepared in:
${basedir}/target/${project.version}
Please deploy it to https://dist.apache.org/repos/dist/dev/jackrabbit/filevault:
cd /path/to/jackrabbit-dev/filevault
mv ${basedir}/target/${project.version} ${project.version}
svn add ${project.version}
svn commit -m 'Apache Jackrabbit FileVault ${project.version} release candidate' ${project.version}
A release vote template has been generated for you:
file://${basedir}/target/vote.txt
]]>
</echo>
<echo />
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>jacoco-report</id>
<modules>
<module>vault-coverage-aggregate</module>
</modules>
</profile>
</profiles>
</project>