This repository has been archived by the owner on Nov 17, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
pom.xml
70 lines (63 loc) · 2.47 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>11</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>aggregator</artifactId>
<version>4.5.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces CDK Aggregator</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- maven-compiler-plugin -->
<!-- Overide jboss-parent default version-->
<maven.compiler.target>1.6</maven.compiler.target>
<maven.compiler.source>1.6</maven.compiler.source>
</properties>
<modules>
<module>parent</module>
<module>commons</module>
<module>annotations</module>
<module>attributes</module>
<module>xinclude</module>
<module>generator</module>
<module>cmdln-generator</module>
<module>maven-plugin</module>
<module>test-component</module>
<module>dist</module>
</modules>
<!-- SCM and distribution management -->
<scm>
<connection>scm:git:git://github.com/richfaces/cdk.git</connection>
<developerConnection>scm:git:[email protected]:richfaces/cdk.git</developerConnection>
<url>https://github.com/richfaces/cdk</url>
<tag>HEAD</tag>
</scm>
<!-- Minimal build configuration -->
<build>
<finalName>cdk</finalName>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>