-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
60 lines (51 loc) · 1.93 KB
/
pom.xml
File metadata and controls
60 lines (51 loc) · 1.93 KB
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
<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.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>8</version>
</parent>
<packaging>pom</packaging>
<groupId>org.gatein.ui</groupId>
<artifactId>gatein-redirect-admin-ui-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>GateIn Redirect Admin UI Parent</name>
<properties>
<version.portlet-bridge>3.2.0.Beta1</version.portlet-bridge>
<version.gatein-api-java>1.0.0.Alpha01</version.gatein-api-java>
</properties>
<modules>
<!-- <module>config</module> -->
<!-- <module>war</module> -->
<module>portlets</module>
<!-- <module>ear</module> -->
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-api</artifactId>
<version>${version.portlet-bridge}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>portletbridge-impl</artifactId>
<version>${version.portlet-bridge}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jboss.portletbridge</groupId>
<artifactId>richfaces4-depchain</artifactId>
<version>${version.portlet-bridge}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.gatein.api</groupId>
<artifactId>gatein-api</artifactId>
<version>${version.gatein-api-java}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>