-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
122 lines (112 loc) · 4.38 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="UTF-8"?>
<!-- ====================================================================== -->
<!-- -->
<!-- JBoss, the OpenSource J2EE webOS -->
<!-- -->
<!-- Distributable under LGPL license. -->
<!-- See terms of license at http://www.gnu.org. -->
<!-- -->
<!-- ====================================================================== -->
<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.osgi</groupId>
<artifactId>jboss-osgi-parent</artifactId>
<version>1.0.19</version>
</parent>
<name>JBossOSGi Xerces</name>
<groupId>org.jboss.osgi.xerces</groupId>
<artifactId>jbosgi-xerces-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- Source Control -->
<scm>
<connection>scm:git:git://github.com/jbosgi/jbosgi-xerces.git</connection>
<developerConnection>scm:git:[email protected]:jbosgi/jbosgi-xerces.git</developerConnection>
<url>http://github.com/jbosgi/jbosgi-xerces</url>
</scm>
<!-- Properties -->
<properties>
<version.apache.xerces>2.10.0</version.apache.xerces>
<version.jboss.arquillian.core>1.0.0.CR7</version.jboss.arquillian.core>
<version.jboss.arquillian.osgi>1.0.2.Final</version.jboss.arquillian.osgi>
<version.jboss.logging>3.1.0.GA</version.jboss.logging>
<version.jboss.logmanager>1.2.0.GA</version.jboss.logmanager>
<version.jboss.logging.processor>1.0.0.Final</version.jboss.logging.processor>
<version.jboss.osgi.framework>1.3.0.Final</version.jboss.osgi.framework>
<version.junit>4.10</version.junit>
<version.osgi>4.2.0</version.osgi>
<version.xml.apis>1.4.01</version.xml.apis>
<version.xml.resolver>1.2</version.xml.resolver>
</properties>
<!-- Modules -->
<modules>
<module>bundle</module>
<module>itest</module>
</modules>
<!-- Dependencies Management -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
<artifactId>arquillian-junit-container</artifactId>
<version>${version.jboss.arquillian.core}</version>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-container-osgi-embedded</artifactId>
<version>${version.jboss.arquillian.osgi}</version>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>${version.jboss.logging}</version>
</dependency>
<dependency>
<groupId>org.jboss.logmanager</groupId>
<artifactId>jboss-logmanager</artifactId>
<version>${version.jboss.logmanager}</version>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-processor</artifactId>
<version>${version.jboss.logging.processor}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi.framework</groupId>
<artifactId>jbosgi-framework-core</artifactId>
<version>${version.jboss.osgi.framework}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${version.osgi}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<version>${version.osgi}</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>${version.apache.xerces}</version>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>${version.xml.apis}</version>
</dependency>
<dependency>
<groupId>xml-resolver</groupId>
<artifactId>xml-resolver</artifactId>
<version>${version.xml.resolver}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>