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