Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<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">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet45-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>cnr-xmldb</artifactId>
11
	<packaging>jar</packaging>
12
	<version>2.0.1-SNAPSHOT</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/cnr-xmldb/trunk</developerConnection>
15
	</scm>
16
	<repositories>
17
		<repository>
18
			<id>exist</id>
19
			<url>https://raw.github.com/eXist-db/mvn-repo/master</url>
20
		</repository>
21
	</repositories>
22
	<dependencies>
23
		<dependency>
24
			<groupId>junit</groupId>
25
			<artifactId>junit</artifactId>
26
			<version>${junit.version}</version>
27
			<scope>test</scope>
28
		</dependency>
29
		<dependency>
30
			<groupId>xerces</groupId>
31
			<artifactId>xercesImpl</artifactId>
32
			<version>2.11.0</version>
33
			<scope>provided</scope>
34
		</dependency>
35
		<dependency>
36
			<groupId>org.springframework</groupId>
37
			<artifactId>spring-context</artifactId>
38
			<version>${spring.version}</version>
39
		</dependency>
40
		<dependency>
41
			<groupId>org.exist-db</groupId>
42
			<artifactId>exist-core</artifactId>
43
			<version>${exist.version}</version>
44
			<exclusions>
45
				<exclusion>
46
					<groupId>asm</groupId>
47
					<artifactId>asm</artifactId>
48
				</exclusion>
49
				<exclusion>
50
					<groupId>antlr</groupId>
51
					<artifactId>antlr</artifactId>
52
				</exclusion>
53
				<exclusion>
54
					<groupId>org.aspectj</groupId>
55
					<artifactId>aspectjrt</artifactId>
56
				</exclusion>
57
				<exclusion>
58
					<groupId>org.eclipse.jetty</groupId>
59
					<artifactId>jetty-security</artifactId>
60
				</exclusion>
61
				<exclusion>
62
					<groupId>org.eclipse.jetty</groupId>
63
					<artifactId>jetty-server</artifactId>
64
				</exclusion>
65
				<exclusion>
66
					<groupId>org.eclipse.jetty</groupId>
67
					<artifactId>jetty-util</artifactId>
68
				</exclusion>
69
				<exclusion>
70
					<artifactId>javax.servlet</artifactId>
71
					<groupId>org.eclipse.jetty.orbit</groupId>
72
				</exclusion>
73
				<exclusion>
74
					<groupId>net.sf.saxon</groupId>
75
					<artifactId>Saxon-HE</artifactId>
76
				</exclusion>
77
				<exclusion>
78
					<groupId>commons-codec</groupId>
79
					<artifactId>commons-codec</artifactId>
80
				</exclusion>
81
                <exclusion>
82
                        <groupId>org.apache.ant</groupId>
83
                        <artifactId>ant</artifactId>
84
                </exclusion>
85
			</exclusions>
86
		</dependency>
87
		<dependency>
88
			<groupId>commons-codec</groupId>
89
			<artifactId>commons-codec</artifactId>
90
			<version>${commons.codec.version}</version>
91
		</dependency>
92

    
93

    
94
		<dependency>
95
			<groupId>org.exist-db</groupId>
96
			<artifactId>exist-start</artifactId>
97
			<version>${exist.version}</version>
98
		</dependency>
99
		<dependency>
100
			<groupId>org.aspectj</groupId>
101
			<artifactId>aspectjrt</artifactId>
102
			<version>[1.8.9]</version>
103
		</dependency>
104
		<dependency>
105
			<groupId>eu.dnetlib</groupId>
106
			<artifactId>cnr-misc-utils</artifactId>
107
			<version>[1.0.0,2.0.0)</version>
108
		</dependency>
109
		<dependency>
110
			<groupId>eu.dnetlib</groupId>
111
			<artifactId>cnr-service-common</artifactId>
112
			<version>[2.0.0,3.0.0)</version>
113
		</dependency>
114
		<dependency>
115
			<groupId>com.google.guava</groupId>
116
			<artifactId>guava</artifactId>
117
			<version>${google.guava.version}</version>
118
		</dependency>
119
	</dependencies>
120
</project>
(3-3/3)