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>icm-iis-parent-container</artifactId>
6
            <version>1.0.1-SNAPSHOT</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<artifactId>icm-iis-export-actionmanager</artifactId>
10
	<packaging>jar</packaging>
11
	<version>1.0.1-SNAPSHOT</version>
12

    
13
	<scm>
14
	  <developerConnection>
15
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-export-actionmanager/trunk
16
	  </developerConnection>
17
	</scm>
18
	
19
	<properties>
20
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
	</properties>
22
	<dependencies>
23
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25
			<artifactId>dnet-actionmanager-common</artifactId>
26
			<version>[2.0.0, 3.0.0)</version>
27
			<exclusions>
28
				<!-- excluding all libraries which are defined in IIS as provided -->
29
				<exclusion>
30
					<groupId>org.apache.hadoop</groupId>
31
					<artifactId>hadoop-core</artifactId>
32
				</exclusion>
33
				<exclusion>
34
					<groupId>org.apache.hadoop</groupId>
35
					<artifactId>hadoop-common</artifactId>
36
				</exclusion>
37
				<exclusion>
38
					<groupId>org.apache.hadoop</groupId>
39
					<artifactId>hadoop-hdfs</artifactId>
40
				</exclusion>
41
				<exclusion>
42
					<groupId>org.apache.hbase</groupId>
43
					<artifactId>hbase</artifactId>
44
				</exclusion>
45
				<!-- excluding org.slf4j:slf4j-jdk14:jar:1.3.1 causing conflicts -->
46
				<exclusion>
47
					<groupId>org.slf4j</groupId>
48
					<artifactId>slf4j-jdk14</artifactId>
49
				</exclusion>
50
				<!-- excluding duplicated dependencies -->
51
				<exclusion>
52
					<groupId>apache</groupId>
53
					<artifactId>commons-logging</artifactId>
54
				</exclusion>
55
				<!-- excluding duplicated dependencies -->
56
				<exclusion>
57
					<groupId>eu.dnetlib</groupId>
58
					<artifactId>dnet-openaire-data-protos</artifactId>
59
				</exclusion>
60
			</exclusions>
61
		</dependency>
62
		<!-- required after introducing 'provided' scope for hadoop libs -->
63
		<dependency>
64
            <groupId>org.apache.hadoop</groupId>
65
            <artifactId>hadoop-core</artifactId>
66
            <version>${iis.hadoop.core.version}</version>
67
            <type>jar</type>
68
            <scope>provided</scope>
69
        </dependency>
70
		<dependency>
71
			<groupId>org.apache.hadoop</groupId>
72
			<artifactId>hadoop-common</artifactId>
73
			<version>${iis.hadoop.common.version}</version>
74
			<scope>provided</scope>
75
		</dependency>
76
		<dependency>
77
			<groupId>org.apache.hbase</groupId>
78
			<artifactId>hbase</artifactId>
79
			<version>${iis.hbase.version}</version>
80
			<scope>provided</scope>
81
		</dependency>
82
		<dependency>
83
			<groupId>eu.dnetlib</groupId>
84
			<artifactId>icm-iis-core</artifactId>
85
			<version>[1.0.0,2.0.0)</version>
86
		</dependency>
87
		<dependency>
88
			<groupId>eu.dnetlib</groupId>
89
			<artifactId>icm-iis-common</artifactId>
90
			<version>[1.0.0,2.0.0)</version>
91
		</dependency>
92
		<dependency>
93
			<groupId>eu.dnetlib</groupId>
94
			<artifactId>icm-iis-schemas</artifactId>
95
			<version>[1.0.0,2.0.0)</version>
96
		</dependency>
97
		
98
		<!-- required for SOAP communication with MDStore -->
99
		<dependency>
100
			<groupId>eu.dnetlib</groupId>
101
			<artifactId>cnr-service-utils</artifactId>
102
			<version>[1.0.0, 2.0.0)</version>
103
			<exclusions>
104
				<!-- excluding duplicated dependencies -->
105
				<exclusion>
106
					<groupId>apache</groupId>
107
					<artifactId>commons-cli</artifactId>
108
				</exclusion>
109
				<exclusion>
110
					<groupId>apache</groupId>
111
					<artifactId>commons-logging</artifactId>
112
				</exclusion>
113
			</exclusions>
114
		</dependency>
115
		<!-- required to access MDStore API -->
116
		<dependency>
117
			<groupId>eu.dnetlib</groupId>
118
			<artifactId>cnr-rmi-api</artifactId>
119
			<version>[2.0.0, 3.0.0)</version>
120
		</dependency>
121
		<dependency>
122
			<groupId>eu.dnetlib</groupId>
123
			<artifactId>cnr-resultset-client</artifactId>
124
			<version>[2.0.0, 3.0.0)</version>
125
			<exclusions>
126
				<exclusion>
127
					<groupId>apache</groupId>
128
					<artifactId>commons-io</artifactId>
129
				</exclusion>
130
				<exclusion>
131
					<groupId>apache</groupId>
132
					<artifactId>commons-cli</artifactId>
133
				</exclusion>
134
			</exclusions>
135
		</dependency>
136
		<!-- proper spring context version required by cnr-resultset-client -->
137
		<dependency>
138
			<groupId>org.springframework</groupId>
139
			<artifactId>spring-context</artifactId>
140
			<version>${spring.version}</version>
141
		</dependency>
142
		<dependency>
143
	        <groupId>org.apache.cxf</groupId>
144
	        <artifactId>cxf-bundle-jaxrs</artifactId>
145
	        <version>${cxf.version}</version>
146
	        <exclusions>
147
	            <exclusion>
148
	                <groupId>org.eclipse.jetty</groupId>
149
	                <artifactId>jetty-server</artifactId>
150
	            </exclusion>
151
	            <!-- excluding org.slf4j:slf4j-jdk14:jar:1.3.1 causing conflicts -->
152
				<exclusion>
153
					<groupId>org.slf4j</groupId>
154
					<artifactId>slf4j-jdk14</artifactId>
155
				</exclusion>
156
	        </exclusions>
157
		</dependency>
158
		
159
		<!-- required by hadoop, not sure why, need to ivestigate this -->
160
		<dependency>
161
			<groupId>xml-apis</groupId>
162
			<artifactId>xml-apis</artifactId>
163
			<version>1.4.01</version>
164
		</dependency>
165
		
166
		<!-- required by dnet-actionmanager-common on CNR cluster only 
167
			for XSLT tansformations when exporting entities -->
168
		<dependency>
169
			<groupId>xalan</groupId>
170
			<artifactId>xalan</artifactId>
171
			<version>2.7.1</version>
172
		</dependency>
173
		<dependency>
174
			<groupId>com.thoughtworks.xstream</groupId>
175
			<artifactId>xstream</artifactId>
176
			<version>1.4.7</version>
177
		</dependency>
178
		
179
		<dependency>
180
			<groupId>junit</groupId>
181
			<artifactId>junit</artifactId>
182
			<version>4.10</version>
183
			<scope>test</scope>
184
		</dependency>
185
	</dependencies>
186
	<build>
187
	</build>
188
</project>
(2-2/2)