forked from xwiki/xwiki-rendering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
288 lines (284 loc) · 11.6 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xwiki.commons</groupId>
<artifactId>xwiki-commons-pom</artifactId>
<version>6.1-SNAPSHOT</version>
</parent>
<groupId>org.xwiki.rendering</groupId>
<artifactId>xwiki-rendering</artifactId>
<version>6.1-SNAPSHOT</version>
<name>XWiki Rendering - Parent POM</name>
<packaging>pom</packaging>
<description>XWiki Rendering - Parent POM</description>
<scm>
<connection>scm:git:git://github.com/xwiki/xwiki-rendering.git</connection>
<developerConnection>scm:git:[email protected]:xwiki/xwiki-rendering.git</developerConnection>
<url>https://github.com/xwiki/xwiki-rendering</url>
<tag>stable-5.0.x</tag>
</scm>
<issueManagement>
<system>jira</system>
<url>http://jira.xwiki.org/jira/browse/XRENDERING</url>
</issueManagement>
<modules>
<!-- Sorted Alphabetically -->
<module>xwiki-rendering-api</module>
<module>xwiki-rendering-archetype-macro</module>
<module>xwiki-rendering-integration-tests</module>
<module>xwiki-rendering-macros</module>
<module>xwiki-rendering-syntaxes</module>
<module>xwiki-rendering-test</module>
<module>xwiki-rendering-transformations</module>
<module>xwiki-rendering-wikimodel</module>
<module>xwiki-rendering-xml</module>
</modules>
<properties>
<!-- Useful for Rendering extensions -->
<rendering.version>${commons.version}</rendering.version>
</properties>
<dependencies>
<dependency>
<groupId>org.xwiki.commons</groupId>
<artifactId>xwiki-commons-component-api</artifactId>
<version>${commons.version}</version>
</dependency>
<!-- Testing Dependencies -->
<dependency>
<groupId>org.xwiki.commons</groupId>
<artifactId>xwiki-commons-test-component</artifactId>
<version>${commons.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<!-- Use the manifest file generated by the OSGi Maven Bundle Plugin -->
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- Generate OSGi Manifest information to all JARs -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Test.java</include>
<include>**/*RenderingTests.java</include>
<include>**/*IntegrationTests.java</include>
</includes>
</configuration>
</plugin>
<!-- Apply the Checkstyle configurations defined in the top level pom.xml file -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<!-- Check license headers -->
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes>
<!-- Unfortunately we need to copy some excludes from the top level POM since Maven or the License plugin
don't merge excludes apparently... -->
<exclude>**/components.txt</exclude>
<exclude>**/goal.txt</exclude>
<exclude>**/it/**/goals.txt</exclude>
<!-- Exclude Rendering Test Data files -->
<exclude>**/*.test</exclude>
<exclude>**/*.in.*txt</exclude>
<exclude>**/*.out.txt</exclude>
<exclude>**/*.inout.txt</exclude>
<exclude>**/*.in.*xml</exclude>
<exclude>**/*.out.xml</exclude>
<exclude>**/*.inout.xml</exclude>
<!-- Exclude Rendering Test framework test data file -->
<exclude>**/ctstest/type/test/test1.inout.xml</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-platform-isolation</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<bannedDependencies>
<excludes>
<!-- Ensure that the XWiki Rendering top level module is independent of the XWiki Platform (so that
it can be used standalone) -->
<exclude>org.xwiki.platform:*</exclude>
</excludes>
</bannedDependencies>
</rules>
</configuration>
</execution>
<!-- Verify that all org.xwiki.commons dependencies in Commons have a version specified either as:
- ${commons.version}
- a value not starting with $ (we want to allow supporting ranges)
Also verifies that all org.xwiki.rendering dependencies in Commons have a version specified either as:
- ${project.version}
- a value not starting with $ (we want to allow supporting ranges)
-->
<execution>
<id>check-dependency-version</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<validateDependencyVersion implementation="org.xwiki.tool.enforcer.ValidateDependencyVersion">
<versionCheck>
<groupIdPrefix>org.xwiki.commons</groupIdPrefix>
<allowedVersionRegex>\$\{commons.version\}|[^$].*</allowedVersionRegex>
</versionCheck>
<versionCheck>
<groupIdPrefix>org.xwiki.rendering</groupIdPrefix>
<allowedVersionRegex>\$\{project.version\}|[^$].*</allowedVersionRegex>
</versionCheck>
</validateDependencyVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<configuration>
<!-- List of specific CLIRR excludes. Example:
<difference>
<differenceType>7012</differenceType>
<className>org/xwiki/ircbot/IRCBot</className>
<method>void initialize(java.lang.String)</method>
<justification>IRCBot is still a young API. Added a new initialize() method to support installing the
IRC Bot application in a subwiki</justification>
</difference>
See http://mojo.codehaus.org/clirr-maven-plugin/examples/ignored-differences.html
-->
<ignored>
<!-- Remove the following ignores after we release the current version as final -->
<difference>
<differenceType>6004</differenceType>
<className>org/xwiki/rendering/wikimodel/impl/InternalWikiScannerContext</className>
<field>fPropertyDocStack</field>
<from>java.util.Stack</from>
<to>java.util.Deque</to>
<justification>Change deprecated usage of Stack class to Deque interface.</justification>
</difference>
<difference>
<differenceType>6004</differenceType>
<className>org/xwiki/rendering/wikimodel/impl/InternalWikiScannerContext</className>
<field>fPropertyStack</field>
<from>java.util.Stack</from>
<to>java.util.Deque</to>
<justification>Change deprecated usage of Stack class to Deque interface.</justification>
</difference>
<difference>
<differenceType>6004</differenceType>
<className>org/xwiki/rendering/wikimodel/impl/WikiScannerContext</className>
<field>fStack</field>
<from>java.util.Stack</from>
<to>java.util.Deque</to>
<justification>Change deprecated usage of Stack class to Deque interface.</justification>
</difference>
<difference>
<differenceType>6004</differenceType>
<className>org/xwiki/rendering/wikimodel/impl/WikiScannerContext</className>
<field>fStack</field>
<from>java.util.Stack</from>
<to>java.util.Deque</to>
<justification>Change deprecated usage of Stack class to Deque interface.</justification>
</difference>
<difference>
<differenceType>6004</differenceType>
<className>org/xwiki/rendering/wikimodel/util/TocBuilder</className>
<field>fBaseLevelStack</field>
<from>java.util.Stack</from>
<to>java.util.Deque</to>
<justification>Change deprecated usage of Stack class to Deque interface.</justification>
</difference>
</ignored>
<excludes>
<exclude>**/internal/**</exclude>
<exclude>**/test/**</exclude>
<!-- Remove the following excludes after we release the current version as final -->
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<!-- Profile to build the Standalone module -->
<profile>
<id>standalone</id>
<activation>
<property>
<!-- This property is automatically defined by the Maven release plugin when executing
a release. Thus this profile will be automatically enabled when releasing -->
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<modules>
<module>xwiki-rendering-standalone</module>
</modules>
</profile>
<!-- Profile to build Legacy modules -->
<profile>
<id>legacy</id>
<modules>
<module>xwiki-rendering-legacy</module>
</modules>
</profile>
</profiles>
</project>