This repository has been archived by the owner on Apr 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
60 lines (54 loc) · 2.31 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
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.wcm</groupId>
<artifactId>wcm-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<version.wcm>2.2.0-SNAPSHOT</version.wcm>
<version.javaee>1.0.0.Final</version.javaee>
<version.jboss.gatein.bom>1.0.3.Final</version.jboss.gatein.bom>
<version.junit>4.8.1</version.junit>
<version.javaee-api>6.0</version.javaee-api>
<version.pc-portlet>2.4.1.Final</version.pc-portlet>
<version.pc-federation>2.5.1.Final</version.pc-federation>
<version.exo.kernel.container>2.4.4-GA</version.exo.kernel.container>
<version.exo.core.component.organization.api>2.5.4-GA</version.exo.core.component.organization.api>
<version.exo.portal.component>3.8.2.Final</version.exo.portal.component>
<version.gatein-api>1.1.0.Final</version.gatein-api>
<version.commons-fileupload>1.2.1</version.commons-fileupload>
<version.commons-io>2.4</version.commons-io>
<version.commons-common>2.2.2.Final</version.commons-common>
<version.maven-compiler-plugin>2.3.2</version.maven-compiler-plugin>
<version.source>1.7</version.source>
<version.target>1.7</version.target>
<version.encoding>UTF-8</version.encoding>
<version.maven-surefire-plugin>2.12</version.maven-surefire-plugin>
<version.jboss.maven.plugin>7.3.Final</version.jboss.maven.plugin>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-6.0</artifactId>
<version>${version.javaee}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.jboss.bom</groupId>
<artifactId>gatein-3.6-bom</artifactId>
<version>${version.jboss.gatein.bom}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>wcm-api</module>
<module>wcm</module>
<module>examples/api-example</module>
</modules>
</project>