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-import</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>icm-iis-core</artifactId>
20
			<version>1.0.0-SNAPSHOT</version>
21
		</dependency>
22
		<dependency>
23
			<groupId>eu.dnetlib</groupId>
24
			<artifactId>icm-iis-common</artifactId>
25
			<version>1.0.0-SNAPSHOT</version>
26
		</dependency>
27
		<dependency>
28
			<groupId>eu.dnetlib</groupId>
29
			<artifactId>icm-iis-schemas</artifactId>
30
			<version>1.0.0-SNAPSHOT</version>
31
		</dependency>
32
		<dependency>
33
			<groupId>org.apache.hbase</groupId>
34
			<artifactId>hbase</artifactId>
35
			<version>${iis.hbase.version}</version>
36
			<scope>provided</scope>
37
		</dependency>
38
		<!-- required after introducing 'provided' scope for hadoop libs -->
39
		<dependency>
40
            <groupId>org.apache.hadoop</groupId>
41
            <artifactId>hadoop-core</artifactId>
42
            <version>${iis.hadoop.core.version}</version>
43
            <scope>provided</scope>
44
        </dependency>
45
		<dependency>
46
			<groupId>org.apache.hadoop</groupId>
47
			<artifactId>hadoop-common</artifactId>
48
			<version>${iis.hadoop.common.version}</version>
49
			<scope>provided</scope>
50
		</dependency>
51
		<dependency>
52
		  <groupId>com.googlecode.protobuf-java-format</groupId>
53
		  <artifactId>protobuf-java-format</artifactId>
54
		  <version>1.2</version>
55
		</dependency>
56
		<dependency>
57
	      <groupId>com.googlecode.json-simple</groupId>
58
	      <artifactId>json-simple</artifactId>
59
	      <version>1.1</version>
60
	      <scope>compile</scope>
61
	    </dependency>
62
		<dependency>
63
			<groupId>commons-cli</groupId>
64
			<artifactId>commons-cli</artifactId>
65
			<version>1.2</version>
66
		</dependency>
67
		<dependency>
68
			<groupId>eu.dnetlib</groupId>
69
			<artifactId>dnet-objectstore-rmi</artifactId>
70
			<!-- changed from 1.0.0 to 2.0.0 due to #913 fix -->
71
			<version>2.0.0</version>
72
			<exclusions>
73
				<exclusion>
74
					<groupId>apache</groupId>
75
					<artifactId>commons-io</artifactId>
76
				</exclusion>
77
				<exclusion>
78
					<groupId>spring</groupId>
79
					<artifactId>spring-context</artifactId>
80
				</exclusion>
81
			</exclusions>
82
		</dependency>
83
		<dependency>
84
			<groupId>eu.dnetlib</groupId>
85
			<artifactId>cnr-rmi-api</artifactId>
86
			<version>2.0.0</version>
87
		</dependency>
88
		<dependency>
89
			<groupId>eu.dnetlib</groupId>
90
			<artifactId>cnr-enabling-database-api</artifactId>
91
			<version>1.0.0</version>
92
		</dependency>
93
		<dependency>
94
			<groupId>eu.dnetlib</groupId>
95
			<artifactId>cnr-resultset-client</artifactId>
96
			<version>1.0.0</version>
97
			<exclusions>
98
				<exclusion>
99
					<groupId>apache</groupId>
100
					<artifactId>commons-io</artifactId>
101
				</exclusion>
102
				<exclusion>
103
					<groupId>apache</groupId>
104
					<artifactId>commons-collections</artifactId>
105
				</exclusion>
106
				<exclusion>
107
					<groupId>apache</groupId>
108
					<artifactId>commons-httpclient</artifactId>
109
				</exclusion>
110
				<exclusion>
111
					<groupId>apache</groupId>
112
					<artifactId>commons-beanutils</artifactId>
113
				</exclusion>
114
				<exclusion>
115
					<groupId>apache</groupId>
116
					<artifactId>commons-lang</artifactId>
117
				</exclusion>
118
				<exclusion>
119
					<groupId>apache</groupId>
120
					<artifactId>commons-logging</artifactId>
121
				</exclusion>
122
				<exclusion>
123
					<groupId>dcl</groupId>
124
					<artifactId>backport-util-concurrent</artifactId>
125
				</exclusion>
126
				<exclusion>
127
					<groupId>spring</groupId>
128
					<artifactId>spring-web</artifactId>
129
				</exclusion>
130
				<exclusion>
131
					<groupId>spring</groupId>
132
					<artifactId>spring-webmvc</artifactId>
133
				</exclusion>
134
			</exclusions>
135
		</dependency>
136
		<dependency>
137
			<groupId>eu.dnetlib</groupId>
138
			<!-- required to share identifiers generation codebase -->
139
			<!-- setting snapshot version here to fix #861 -->
140
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
141
			<version>2.0.1-SNAPSHOT</version>
142
		</dependency>
143
		
144
		<!-- proper spring context version required by cnr-resultset-client -->
145
		<dependency>
146
			<groupId>org.springframework</groupId>
147
			<artifactId>spring-context</artifactId>
148
			<version>${spring.version}</version>
149
		</dependency>
150
		<dependency>
151
	        <groupId>org.apache.cxf</groupId>
152
	        <artifactId>cxf-bundle-jaxrs</artifactId>
153
	        <version>${cxf.version}</version>
154
	        <exclusions>
155
	            <exclusion>
156
	                <groupId>org.eclipse.jetty</groupId>
157
	                <artifactId>jetty-server</artifactId>
158
	            </exclusion>
159
	            <exclusion>
160
	                <groupId>org.springframework</groupId>
161
	                <artifactId>spring-web</artifactId>
162
	            </exclusion>
163
	            <!-- excluding org.slf4j:slf4j-jdk14:jar:1.3.1 causing conflicts -->
164
				<exclusion>
165
					<groupId>org.slf4j</groupId>
166
					<artifactId>slf4j-jdk14</artifactId>
167
				</exclusion>
168
				<exclusion>
169
					<groupId>jdom</groupId>
170
					<artifactId>jdom</artifactId>
171
				</exclusion>
172
	        </exclusions>
173
		</dependency>
174
		<dependency>
175
			<groupId>com.google.code.gson</groupId>
176
			<artifactId>gson</artifactId>
177
			<version>${google.gson.version}</version>
178
		</dependency>
179
	</dependencies>
180
	<build>
181
	</build>
182
</project>
(3-3/3)