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