Project

General

Profile

1 16874 marek.hors
<?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 16900 marek.hors
    		<groupId>eu.dnetlib</groupId>
5
	        <artifactId>icm-iis-parent-container</artifactId>
6 35413 marek.hors
            <version>1.0.1-CDH-5.3.0-SNAPSHOT</version>
7 16874 marek.hors
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<artifactId>icm-iis-import</artifactId>
10
	<packaging>jar</packaging>
11 35413 marek.hors
	<version>1.0.1-CDH-5.3.0-SNAPSHOT</version>
12 33412 marek.hors
13
	<scm>
14
	  <developerConnection>
15 33574 marek.hors
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-import/trunk
16 33412 marek.hors
	  </developerConnection>
17
	</scm>
18 26494 marek.hors
19 16874 marek.hors
	<properties>
20
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
	</properties>
22
	<dependencies>
23 16921 marek.hors
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25 17019 marek.hors
			<artifactId>icm-iis-core</artifactId>
26 34627 marek.hors
			<version>[1.0.0,2.0.0)</version>
27 16921 marek.hors
		</dependency>
28
		<dependency>
29 16957 mateusz.ko
			<groupId>eu.dnetlib</groupId>
30 17050 mateusz.ko
			<artifactId>icm-iis-common</artifactId>
31 34627 marek.hors
			<version>[1.0.0,2.0.0)</version>
32 17050 mateusz.ko
		</dependency>
33
		<dependency>
34
			<groupId>eu.dnetlib</groupId>
35 16957 mateusz.ko
			<artifactId>icm-iis-schemas</artifactId>
36 34627 marek.hors
			<version>[1.0.0,2.0.0)</version>
37 16957 mateusz.ko
		</dependency>
38
		<dependency>
39 16921 marek.hors
			<groupId>org.apache.hbase</groupId>
40 35413 marek.hors
			<artifactId>hbase-client</artifactId>
41 19709 marek.hors
			<version>${iis.hbase.version}</version>
42 35413 marek.hors
			<!-- hbase-client does not seem to be provided on CDH5 cluster
43 19819 marek.hors
			<scope>provided</scope>
44 35413 marek.hors
			-->
45 16921 marek.hors
		</dependency>
46 35413 marek.hors
		<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 19819 marek.hors
		<!-- required after introducing 'provided' scope for hadoop libs -->
53 16921 marek.hors
		<dependency>
54 19819 marek.hors
            <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 16921 marek.hors
		  <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 17711 marek.hors
		<dependency>
77
			<groupId>commons-cli</groupId>
78
			<artifactId>commons-cli</artifactId>
79
			<version>1.2</version>
80
		</dependency>
81 20227 marek.hors
		<dependency>
82
			<groupId>eu.dnetlib</groupId>
83
			<artifactId>dnet-objectstore-rmi</artifactId>
84 34582 marek.hors
			<version>[2.0.0, 3.0.0)</version>
85 20234 marek.hors
			<exclusions>
86
				<exclusion>
87
					<groupId>apache</groupId>
88
					<artifactId>commons-io</artifactId>
89
				</exclusion>
90 20235 marek.hors
				<exclusion>
91
					<groupId>spring</groupId>
92
					<artifactId>spring-context</artifactId>
93
				</exclusion>
94 20234 marek.hors
			</exclusions>
95 20227 marek.hors
		</dependency>
96 20902 marek.hors
		<dependency>
97
			<groupId>eu.dnetlib</groupId>
98 26494 marek.hors
			<artifactId>cnr-rmi-api</artifactId>
99 34582 marek.hors
			<version>[2.0.0, 3.0.0)</version>
100 20902 marek.hors
		</dependency>
101
		<dependency>
102
			<groupId>eu.dnetlib</groupId>
103 24176 marek.hors
			<artifactId>cnr-enabling-database-api</artifactId>
104 34582 marek.hors
			<version>[1.0.0, 2.0.0)</version>
105 24176 marek.hors
		</dependency>
106
		<dependency>
107
			<groupId>eu.dnetlib</groupId>
108 20902 marek.hors
			<artifactId>cnr-resultset-client</artifactId>
109 34582 marek.hors
			<version>[2.0.0, 3.0.0)</version>
110 20902 marek.hors
			<exclusions>
111
				<exclusion>
112
					<groupId>apache</groupId>
113
					<artifactId>commons-io</artifactId>
114
				</exclusion>
115 23894 marek.hors
				<exclusion>
116
					<groupId>apache</groupId>
117 25093 marek.hors
					<artifactId>commons-collections</artifactId>
118 23894 marek.hors
				</exclusion>
119 25092 marek.hors
				<exclusion>
120 25094 marek.hors
					<groupId>apache</groupId>
121
					<artifactId>commons-httpclient</artifactId>
122
				</exclusion>
123
				<exclusion>
124 25142 marek.hors
					<groupId>apache</groupId>
125
					<artifactId>commons-beanutils</artifactId>
126
				</exclusion>
127
				<exclusion>
128 25147 marek.hors
					<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 25092 marek.hors
					<groupId>dcl</groupId>
137
					<artifactId>backport-util-concurrent</artifactId>
138
				</exclusion>
139 25150 marek.hors
				<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 20902 marek.hors
			</exclusions>
148
		</dependency>
149 24183 marek.hors
		<dependency>
150
			<groupId>eu.dnetlib</groupId>
151
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
152 34582 marek.hors
			<version>[2.0.0, 3.0.0)</version>
153 24183 marek.hors
		</dependency>
154 20902 marek.hors
		<!-- 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 25150 marek.hors
	            <exclusion>
170
	                <groupId>org.springframework</groupId>
171
	                <artifactId>spring-web</artifactId>
172
	            </exclusion>
173 21146 marek.hors
	            <!-- 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 25172 marek.hors
				<exclusion>
179
					<groupId>jdom</groupId>
180
					<artifactId>jdom</artifactId>
181
				</exclusion>
182 20902 marek.hors
	        </exclusions>
183
		</dependency>
184 23871 marek.hors
		<dependency>
185
			<groupId>com.google.code.gson</groupId>
186
			<artifactId>gson</artifactId>
187
			<version>${google.gson.version}</version>
188
		</dependency>
189 16874 marek.hors
	</dependencies>
190
	<build>
191
	</build>
192
</project>