Project

General

Profile

1 17812 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
    		<groupId>eu.dnetlib</groupId>
5
	        <artifactId>icm-iis-parent-container</artifactId>
6 35705 marek.hors
            <version>1.0.1-SNAPSHOT</version>
7 17812 marek.hors
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9 17982 marek.hors
	<artifactId>icm-iis-export-actionmanager</artifactId>
10 17812 marek.hors
	<packaging>jar</packaging>
11 33570 marek.hors
	<version>1.0.1-SNAPSHOT</version>
12 33496 marek.hors
13
	<scm>
14
	  <developerConnection>
15 33570 marek.hors
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-export-actionmanager/trunk
16 33496 marek.hors
	  </developerConnection>
17
	</scm>
18 26499 marek.hors
19 17812 marek.hors
	<properties>
20
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
	</properties>
22
	<dependencies>
23
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25 18529 marek.hors
			<artifactId>dnet-actionmanager-common</artifactId>
26 34583 marek.hors
			<version>[2.0.0, 3.0.0)</version>
27 19819 marek.hors
			<exclusions>
28
				<!-- excluding all libraries which are defined in IIS as provided -->
29
				<exclusion>
30
					<groupId>org.apache.hadoop</groupId>
31 19833 marek.hors
					<artifactId>hadoop-core</artifactId>
32
				</exclusion>
33
				<exclusion>
34
					<groupId>org.apache.hadoop</groupId>
35 19819 marek.hors
					<artifactId>hadoop-common</artifactId>
36
				</exclusion>
37
				<exclusion>
38
					<groupId>org.apache.hadoop</groupId>
39
					<artifactId>hadoop-hdfs</artifactId>
40
				</exclusion>
41 19833 marek.hors
				<exclusion>
42
					<groupId>org.apache.hbase</groupId>
43
					<artifactId>hbase</artifactId>
44
				</exclusion>
45 21141 marek.hors
				<!-- excluding org.slf4j:slf4j-jdk14:jar:1.3.1 causing conflicts -->
46
				<exclusion>
47
					<groupId>org.slf4j</groupId>
48
					<artifactId>slf4j-jdk14</artifactId>
49
				</exclusion>
50 25145 marek.hors
				<!-- excluding duplicated dependencies -->
51
				<exclusion>
52
					<groupId>apache</groupId>
53
					<artifactId>commons-logging</artifactId>
54
				</exclusion>
55 25525 marek.hors
				<!-- excluding duplicated dependencies -->
56
				<exclusion>
57
					<groupId>eu.dnetlib</groupId>
58
					<artifactId>dnet-openaire-data-protos</artifactId>
59
				</exclusion>
60 19819 marek.hors
			</exclusions>
61 18529 marek.hors
		</dependency>
62 19819 marek.hors
		<!-- required after introducing 'provided' scope for hadoop libs -->
63 18529 marek.hors
		<dependency>
64 19833 marek.hors
            <groupId>org.apache.hadoop</groupId>
65
            <artifactId>hadoop-core</artifactId>
66
            <version>${iis.hadoop.core.version}</version>
67
            <type>jar</type>
68
            <scope>provided</scope>
69
        </dependency>
70
		<dependency>
71 19819 marek.hors
			<groupId>org.apache.hadoop</groupId>
72
			<artifactId>hadoop-common</artifactId>
73
			<version>${iis.hadoop.common.version}</version>
74
			<scope>provided</scope>
75
		</dependency>
76
		<dependency>
77 19833 marek.hors
			<groupId>org.apache.hbase</groupId>
78
			<artifactId>hbase</artifactId>
79
			<version>${iis.hbase.version}</version>
80
			<scope>provided</scope>
81
		</dependency>
82
		<dependency>
83 18529 marek.hors
			<groupId>eu.dnetlib</groupId>
84 17812 marek.hors
			<artifactId>icm-iis-core</artifactId>
85 34631 marek.hors
			<version>[1.0.0,2.0.0)</version>
86 17812 marek.hors
		</dependency>
87
		<dependency>
88
			<groupId>eu.dnetlib</groupId>
89
			<artifactId>icm-iis-common</artifactId>
90 34631 marek.hors
			<version>[1.0.0,2.0.0)</version>
91 17812 marek.hors
		</dependency>
92
		<dependency>
93
			<groupId>eu.dnetlib</groupId>
94
			<artifactId>icm-iis-schemas</artifactId>
95 34631 marek.hors
			<version>[1.0.0,2.0.0)</version>
96 17812 marek.hors
		</dependency>
97 25237 marek.hors
98 25099 marek.hors
		<!-- required for SOAP communication with MDStore -->
99 21443 marek.hors
		<dependency>
100
			<groupId>eu.dnetlib</groupId>
101
			<artifactId>cnr-service-utils</artifactId>
102 34583 marek.hors
			<version>[1.0.0, 2.0.0)</version>
103 25096 marek.hors
			<exclusions>
104 25146 marek.hors
				<!-- excluding duplicated dependencies -->
105 25096 marek.hors
				<exclusion>
106
					<groupId>apache</groupId>
107
					<artifactId>commons-cli</artifactId>
108
				</exclusion>
109 25146 marek.hors
				<exclusion>
110
					<groupId>apache</groupId>
111
					<artifactId>commons-logging</artifactId>
112
				</exclusion>
113 25096 marek.hors
			</exclusions>
114 21443 marek.hors
		</dependency>
115 21539 marek.hors
		<!-- required to access MDStore API -->
116
		<dependency>
117
			<groupId>eu.dnetlib</groupId>
118 26499 marek.hors
			<artifactId>cnr-rmi-api</artifactId>
119 34583 marek.hors
			<version>[2.0.0, 3.0.0)</version>
120 21539 marek.hors
		</dependency>
121
		<dependency>
122
			<groupId>eu.dnetlib</groupId>
123
			<artifactId>cnr-resultset-client</artifactId>
124 34583 marek.hors
			<version>[2.0.0, 3.0.0)</version>
125 21539 marek.hors
			<exclusions>
126
				<exclusion>
127
					<groupId>apache</groupId>
128
					<artifactId>commons-io</artifactId>
129
				</exclusion>
130 25098 marek.hors
				<exclusion>
131
					<groupId>apache</groupId>
132
					<artifactId>commons-cli</artifactId>
133
				</exclusion>
134 21539 marek.hors
			</exclusions>
135
		</dependency>
136
		<!-- proper spring context version required by cnr-resultset-client -->
137
		<dependency>
138
			<groupId>org.springframework</groupId>
139
			<artifactId>spring-context</artifactId>
140
			<version>${spring.version}</version>
141
		</dependency>
142
		<dependency>
143
	        <groupId>org.apache.cxf</groupId>
144
	        <artifactId>cxf-bundle-jaxrs</artifactId>
145
	        <version>${cxf.version}</version>
146
	        <exclusions>
147
	            <exclusion>
148
	                <groupId>org.eclipse.jetty</groupId>
149
	                <artifactId>jetty-server</artifactId>
150
	            </exclusion>
151
	            <!-- excluding org.slf4j:slf4j-jdk14:jar:1.3.1 causing conflicts -->
152
				<exclusion>
153
					<groupId>org.slf4j</groupId>
154
					<artifactId>slf4j-jdk14</artifactId>
155
				</exclusion>
156
	        </exclusions>
157
		</dependency>
158
159 18729 marek.hors
		<!-- required by hadoop, not sure why, need to ivestigate this -->
160
		<dependency>
161
			<groupId>xml-apis</groupId>
162
			<artifactId>xml-apis</artifactId>
163
			<version>1.4.01</version>
164
		</dependency>
165 25912 marek.hors
166
		<!-- required by dnet-actionmanager-common on CNR cluster only
167
			for XSLT tansformations when exporting entities -->
168
		<dependency>
169 29799 marek.hors
			<groupId>xalan</groupId>
170
			<artifactId>xalan</artifactId>
171
			<version>2.7.1</version>
172
		</dependency>
173 28103 marek.hors
		<dependency>
174
			<groupId>com.thoughtworks.xstream</groupId>
175
			<artifactId>xstream</artifactId>
176
			<version>1.4.7</version>
177
		</dependency>
178 29799 marek.hors
179
		<dependency>
180
			<groupId>junit</groupId>
181
			<artifactId>junit</artifactId>
182
			<version>4.10</version>
183
			<scope>test</scope>
184
		</dependency>
185 17812 marek.hors
	</dependencies>
186
	<build>
187
	</build>
188
</project>