This repository has been archived by the owner on Nov 16, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
pom.xml
66 lines (60 loc) · 2.04 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
<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">
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-parent</artifactId>
<version>13</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>richfaces-root-aggregator</artifactId>
<version>4.3.8-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Aggregator</name>
<build>
<plugins>
<!-- To trigger the release -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
</plugins>
</build>
<modules>
<module>bom</module>
<module>parent</module>
<module>arquillian</module>
</modules>
<profiles>
<profile>
<id>bootstrap</id>
<modules>
<module>../parent</module>
<module>../checkstyle</module>
<module>../shade-transformers</module>
<module>../vdl-doc</module>
</modules>
</profile>
<profile>
<id>build</id>
<modules>
<module>../core</module>
<module>../components</module>
<module>../archetypes</module>
<module>../dev-examples</module>
<module>../showcase</module>
</modules>
</profile>
<profile>
<id>release</id>
<modules>
<module>dist</module>
</modules>
</profile>
</profiles>
<scm>
<connection>scm:git:git://github.com/richfaces/build.git</connection>
<developerConnection>scm:git:[email protected]:richfaces/build.git</developerConnection>
<url>https://github.com/richfaces/build</url>
</scm>
</project>