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
/
Copy pathpom.xml
69 lines (55 loc) · 2.01 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
<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>
<name>GateIn - Common</name>
<parent>
<groupId>org.gatein</groupId>
<artifactId>gatein-parent</artifactId>
<version>1.3.0.Final</version>
</parent>
<groupId>org.gatein.common</groupId>
<artifactId>common-parent</artifactId>
<version>2.2.3.Final-SNAPSHOT</version>
<packaging>pom</packaging>
<scm>
<connection>scm:git:git://github.com/gatein/gatein-common.git</connection>
<developerConnection>scm:git:ssh://[email protected]/gatein/gatein-common.git</developerConnection>
<url>https://github.com/gatein/gatein-common</url>
</scm>
<properties>
<version.gatein.dep>1.4.0.Final</version.gatein.dep>
<version.junit>3.8.2</version.junit>
<version.jboss.marshalling>1.3.18.GA</version.jboss.marshalling>
</properties>
<!-- Import dependency management configuration -->
<dependencyManagement>
<dependencies>
<!-- Import dependency management configuration -->
<dependency>
<groupId>org.gatein</groupId>
<artifactId>gatein-dep</artifactId>
<version>${version.gatein.dep}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
<artifactId>common-logging</artifactId>
<version>2.2.3.Final-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
<artifactId>common-common</artifactId>
<version>2.2.3.Final-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>logging</module>
<module>common</module>
</modules>
</project>