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
			<version>1.0.0-SNAPSHOT</version>
71
			<exclusions>
72
				<exclusion>
73
					<groupId>apache</groupId>
74
					<artifactId>commons-io</artifactId>
75
				</exclusion>
76
				<exclusion>
77
					<groupId>spring</groupId>
78
					<artifactId>spring-context</artifactId>
79
				</exclusion>
80
			</exclusions>
81
		</dependency>
82
		<dependency>
83
			<groupId>eu.dnetlib</groupId>
84
			<artifactId>cnr-rmi-api</artifactId>
85
			<version>2.0.0-SNAPSHOT</version>
86
		</dependency>
87
		<dependency>
88
			<groupId>eu.dnetlib</groupId>
89
			<artifactId>cnr-enabling-database-api</artifactId>
90
			<version>1.0.0-SNAPSHOT</version>
91
		</dependency>
92
		<dependency>
93
			<groupId>eu.dnetlib</groupId>
94
			<artifactId>cnr-resultset-client</artifactId>
95
			<version>1.0.0-SNAPSHOT</version>
96
			<exclusions>
97
				<exclusion>
98
					<groupId>apache</groupId>
99
					<artifactId>commons-io</artifactId>
100
				</exclusion>
101
				<exclusion>
102
					<groupId>apache</groupId>
103
					<artifactId>commons-collections</artifactId>
104
				</exclusion>
105
				<exclusion>
106
					<groupId>apache</groupId>
107
					<artifactId>commons-httpclient</artifactId>
108
				</exclusion>
109
				<exclusion>
110
					<groupId>apache</groupId>
111
					<artifactId>commons-beanutils</artifactId>
112
				</exclusion>
113
				<exclusion>
114
					<groupId>apache</groupId>
115
					<artifactId>commons-lang</artifactId>
116
				</exclusion>
117
				<exclusion>
118
					<groupId>apache</groupId>
119
					<artifactId>commons-logging</artifactId>
120
				</exclusion>
121
				<exclusion>
122
					<groupId>dcl</groupId>
123
					<artifactId>backport-util-concurrent</artifactId>
124
				</exclusion>
125
				<exclusion>
126
					<groupId>spring</groupId>
127
					<artifactId>spring-web</artifactId>
128
				</exclusion>
129
				<exclusion>
130
					<groupId>spring</groupId>
131
					<artifactId>spring-webmvc</artifactId>
132
				</exclusion>
133
			</exclusions>
134
		</dependency>
135
		<dependency>
136
			<groupId>eu.dnetlib</groupId>
137
			<!-- required to share identifiers generation codebase -->
138
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
139
			<version>2.0.0-SNAPSHOT</version>
140
		</dependency>
141
		
142
		<!-- proper spring context version required by cnr-resultset-client -->
143
		<dependency>
144
			<groupId>org.springframework</groupId>
145
			<artifactId>spring-context</artifactId>
146
			<version>${spring.version}</version>
147
		</dependency>
148
		<dependency>
149
	        <groupId>org.apache.cxf</groupId>
150
	        <artifactId>cxf-bundle-jaxrs</artifactId>
151
	        <version>${cxf.version}</version>
152
	        <exclusions>
153
	            <exclusion>
154
	                <groupId>org.eclipse.jetty</groupId>
155
	                <artifactId>jetty-server</artifactId>
156
	            </exclusion>
157
	            <exclusion>
158
	                <groupId>org.springframework</groupId>
159
	                <artifactId>spring-web</artifactId>
160
	            </exclusion>
161
	            <!-- excluding org.slf4j:slf4j-jdk14:jar:1.3.1 causing conflicts -->
162
				<exclusion>
163
					<groupId>org.slf4j</groupId>
164
					<artifactId>slf4j-jdk14</artifactId>
165
				</exclusion>
166
				<exclusion>
167
					<groupId>jdom</groupId>
168
					<artifactId>jdom</artifactId>
169
				</exclusion>
170
	        </exclusions>
171
		</dependency>
172
		<dependency>
173
			<groupId>com.google.code.gson</groupId>
174
			<artifactId>gson</artifactId>
175
			<version>${google.gson.version}</version>
176
		</dependency>
177
	</dependencies>
178
	<build>
179
	</build>
180
	<repositories>
181
		<!-- addded to stick to old dnet30 releases -->
182
		<repository>
183
			<id>cloudera</id>
184
			<name>Cloudera Repository</name>
185
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
186
			<releases>
187
				<enabled>true</enabled>
188
			</releases>
189
			<snapshots>
190
				<enabled>false</enabled>
191
			</snapshots>
192
		</repository>
193
	</repositories>
194
</project>
(3-3/3)