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-CDH-5.3.0-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-CDH-5.3.0-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>${iis.hbase.artifactid}</artifactId>
79
			<version>${iis.hbase.version}</version>
80
			<!-- hbase-client does not seem to be provided on CDH5 cluster
81
			<scope>provided</scope>
82
			-->
83
		</dependency>
84
		<dependency>
85
			<groupId>eu.dnetlib</groupId>
86
			<artifactId>icm-iis-core</artifactId>
87
			<version>[1.0.0,2.0.0)</version>
88
		</dependency>
89
		<dependency>
90
			<groupId>eu.dnetlib</groupId>
91
			<artifactId>icm-iis-common</artifactId>
92
			<version>[1.0.0,2.0.0)</version>
93
		</dependency>
94
		<dependency>
95
			<groupId>eu.dnetlib</groupId>
96
			<artifactId>icm-iis-schemas</artifactId>
97
			<version>[1.0.0,2.0.0)</version>
98
		</dependency>
99
		
100
		<!-- required for SOAP communication with MDStore -->
101
		<dependency>
102
			<groupId>eu.dnetlib</groupId>
103
			<artifactId>cnr-service-utils</artifactId>
104
			<version>[1.0.0, 2.0.0)</version>
105
			<exclusions>
106
				<!-- excluding duplicated dependencies -->
107
				<exclusion>
108
					<groupId>apache</groupId>
109
					<artifactId>commons-cli</artifactId>
110
				</exclusion>
111
				<exclusion>
112
					<groupId>apache</groupId>
113
					<artifactId>commons-logging</artifactId>
114
				</exclusion>
115
			</exclusions>
116
		</dependency>
117
		<!-- required to access MDStore API -->
118
		<dependency>
119
			<groupId>eu.dnetlib</groupId>
120
			<artifactId>cnr-rmi-api</artifactId>
121
			<version>[2.0.0, 3.0.0)</version>
122
		</dependency>
123
		<dependency>
124
			<groupId>eu.dnetlib</groupId>
125
			<artifactId>cnr-resultset-client</artifactId>
126
			<version>[2.0.0, 3.0.0)</version>
127
			<exclusions>
128
				<exclusion>
129
					<groupId>apache</groupId>
130
					<artifactId>commons-io</artifactId>
131
				</exclusion>
132
				<exclusion>
133
					<groupId>apache</groupId>
134
					<artifactId>commons-cli</artifactId>
135
				</exclusion>
136
			</exclusions>
137
		</dependency>
138
		<!-- proper spring context version required by cnr-resultset-client -->
139
		<dependency>
140
			<groupId>org.springframework</groupId>
141
			<artifactId>spring-context</artifactId>
142
			<version>${spring.version}</version>
143
		</dependency>
144
		<dependency>
145
	        <groupId>org.apache.cxf</groupId>
146
	        <artifactId>cxf-bundle-jaxrs</artifactId>
147
	        <version>${cxf.version}</version>
148
	        <exclusions>
149
	            <exclusion>
150
	                <groupId>org.eclipse.jetty</groupId>
151
	                <artifactId>jetty-server</artifactId>
152
	            </exclusion>
153
	            <!-- excluding org.slf4j:slf4j-jdk14:jar:1.3.1 causing conflicts -->
154
				<exclusion>
155
					<groupId>org.slf4j</groupId>
156
					<artifactId>slf4j-jdk14</artifactId>
157
				</exclusion>
158
	        </exclusions>
159
		</dependency>
160
		
161
		<!-- required by hadoop, not sure why, need to ivestigate this -->
162
		<dependency>
163
			<groupId>xml-apis</groupId>
164
			<artifactId>xml-apis</artifactId>
165
			<version>1.4.01</version>
166
		</dependency>
167
		
168
		<!-- required by dnet-actionmanager-common on CNR cluster only 
169
			for XSLT tansformations when exporting entities -->
170
		<dependency>
171
			<groupId>xalan</groupId>
172
			<artifactId>xalan</artifactId>
173
			<version>2.7.1</version>
174
		</dependency>
175
		<dependency>
176
			<groupId>com.thoughtworks.xstream</groupId>
177
			<artifactId>xstream</artifactId>
178
			<version>1.4.7</version>
179
		</dependency>
180
		
181
		<dependency>
182
			<groupId>junit</groupId>
183
			<artifactId>junit</artifactId>
184
			<version>4.10</version>
185
			<scope>test</scope>
186
		</dependency>
187
	</dependencies>
188
	<build>
189
	</build>
190
</project>
(3-3/3)