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