forked from xwiki/xwiki-rendering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
189 lines (187 loc) · 6.87 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
<?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>4.1-SNAPSHOT</version>
</parent>
<groupId>org.xwiki.rendering</groupId>
<artifactId>xwiki-rendering</artifactId>
<version>4.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>
</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-standalone</module>
<module>xwiki-rendering-syntaxes</module>
<module>xwiki-rendering-test</module>
<module>xwiki-rendering-transformations</module>
<module>xwiki-rendering-wikimodel</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</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.maven-license-plugin</groupId>
<artifactId>maven-license-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 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>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<configuration>
<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 Legacy modules -->
<profile>
<id>legacy</id>
<modules>
<module>xwiki-rendering-legacy</module>
</modules>
</profile>
</profiles>
</project>