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 |
35403
|
marek.hors
|
<version>1.0.1-CDH-5.3.0-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 |
35403
|
marek.hors
|
<version>1.0.1-CDH-5.3.0-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 |
35403
|
marek.hors
|
<artifactId>${iis.hbase.artifactid}</artifactId>
|
79 |
19833
|
marek.hors
|
<version>${iis.hbase.version}</version>
|
80 |
35403
|
marek.hors
|
<!-- hbase-client does not seem to be provided on CDH5 cluster
|
81 |
19833
|
marek.hors
|
<scope>provided</scope>
|
82 |
35403
|
marek.hors
|
-->
|
83 |
19833
|
marek.hors
|
</dependency>
|
84 |
|
|
<dependency>
|
85 |
18529
|
marek.hors
|
<groupId>eu.dnetlib</groupId>
|
86 |
17812
|
marek.hors
|
<artifactId>icm-iis-core</artifactId>
|
87 |
34631
|
marek.hors
|
<version>[1.0.0,2.0.0)</version>
|
88 |
17812
|
marek.hors
|
</dependency>
|
89 |
|
|
<dependency>
|
90 |
|
|
<groupId>eu.dnetlib</groupId>
|
91 |
|
|
<artifactId>icm-iis-common</artifactId>
|
92 |
34631
|
marek.hors
|
<version>[1.0.0,2.0.0)</version>
|
93 |
17812
|
marek.hors
|
</dependency>
|
94 |
|
|
<dependency>
|
95 |
|
|
<groupId>eu.dnetlib</groupId>
|
96 |
|
|
<artifactId>icm-iis-schemas</artifactId>
|
97 |
34631
|
marek.hors
|
<version>[1.0.0,2.0.0)</version>
|
98 |
17812
|
marek.hors
|
</dependency>
|
99 |
25237
|
marek.hors
|
|
100 |
25099
|
marek.hors
|
<!-- required for SOAP communication with MDStore -->
|
101 |
21443
|
marek.hors
|
<dependency>
|
102 |
|
|
<groupId>eu.dnetlib</groupId>
|
103 |
|
|
<artifactId>cnr-service-utils</artifactId>
|
104 |
34583
|
marek.hors
|
<version>[1.0.0, 2.0.0)</version>
|
105 |
25096
|
marek.hors
|
<exclusions>
|
106 |
25146
|
marek.hors
|
<!-- excluding duplicated dependencies -->
|
107 |
25096
|
marek.hors
|
<exclusion>
|
108 |
|
|
<groupId>apache</groupId>
|
109 |
|
|
<artifactId>commons-cli</artifactId>
|
110 |
|
|
</exclusion>
|
111 |
25146
|
marek.hors
|
<exclusion>
|
112 |
|
|
<groupId>apache</groupId>
|
113 |
|
|
<artifactId>commons-logging</artifactId>
|
114 |
|
|
</exclusion>
|
115 |
25096
|
marek.hors
|
</exclusions>
|
116 |
21443
|
marek.hors
|
</dependency>
|
117 |
21539
|
marek.hors
|
<!-- required to access MDStore API -->
|
118 |
|
|
<dependency>
|
119 |
|
|
<groupId>eu.dnetlib</groupId>
|
120 |
26499
|
marek.hors
|
<artifactId>cnr-rmi-api</artifactId>
|
121 |
34583
|
marek.hors
|
<version>[2.0.0, 3.0.0)</version>
|
122 |
21539
|
marek.hors
|
</dependency>
|
123 |
|
|
<dependency>
|
124 |
|
|
<groupId>eu.dnetlib</groupId>
|
125 |
|
|
<artifactId>cnr-resultset-client</artifactId>
|
126 |
34583
|
marek.hors
|
<version>[2.0.0, 3.0.0)</version>
|
127 |
21539
|
marek.hors
|
<exclusions>
|
128 |
|
|
<exclusion>
|
129 |
|
|
<groupId>apache</groupId>
|
130 |
|
|
<artifactId>commons-io</artifactId>
|
131 |
|
|
</exclusion>
|
132 |
25098
|
marek.hors
|
<exclusion>
|
133 |
|
|
<groupId>apache</groupId>
|
134 |
|
|
<artifactId>commons-cli</artifactId>
|
135 |
|
|
</exclusion>
|
136 |
21539
|
marek.hors
|
</exclusions>
|
137 |
|
|
</dependency>
|
138 |
|
|
<!-- proper spring context version required by cnr-resultset-client -->
|
139 |
|
|
<dependency>
|
140 |
|
|
<groupId>org.springframework</groupId>
|
141 |
|
|
<artifactId>spring-context</artifactId>
|
142 |
|
|
<version>${spring.version}</version>
|
143 |
|
|
</dependency>
|
144 |
|
|
<dependency>
|
145 |
|
|
<groupId>org.apache.cxf</groupId>
|
146 |
|
|
<artifactId>cxf-bundle-jaxrs</artifactId>
|
147 |
|
|
<version>${cxf.version}</version>
|
148 |
|
|
<exclusions>
|
149 |
|
|
<exclusion>
|
150 |
|
|
<groupId>org.eclipse.jetty</groupId>
|
151 |
|
|
<artifactId>jetty-server</artifactId>
|
152 |
|
|
</exclusion>
|
153 |
|
|
<!-- excluding org.slf4j:slf4j-jdk14:jar:1.3.1 causing conflicts -->
|
154 |
|
|
<exclusion>
|
155 |
|
|
<groupId>org.slf4j</groupId>
|
156 |
|
|
<artifactId>slf4j-jdk14</artifactId>
|
157 |
|
|
</exclusion>
|
158 |
|
|
</exclusions>
|
159 |
|
|
</dependency>
|
160 |
|
|
|
161 |
18729
|
marek.hors
|
<!-- required by hadoop, not sure why, need to ivestigate this -->
|
162 |
|
|
<dependency>
|
163 |
|
|
<groupId>xml-apis</groupId>
|
164 |
|
|
<artifactId>xml-apis</artifactId>
|
165 |
|
|
<version>1.4.01</version>
|
166 |
|
|
</dependency>
|
167 |
25912
|
marek.hors
|
|
168 |
|
|
<!-- required by dnet-actionmanager-common on CNR cluster only
|
169 |
|
|
for XSLT tansformations when exporting entities -->
|
170 |
|
|
<dependency>
|
171 |
29799
|
marek.hors
|
<groupId>xalan</groupId>
|
172 |
|
|
<artifactId>xalan</artifactId>
|
173 |
|
|
<version>2.7.1</version>
|
174 |
|
|
</dependency>
|
175 |
28103
|
marek.hors
|
<dependency>
|
176 |
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
177 |
|
|
<artifactId>xstream</artifactId>
|
178 |
|
|
<version>1.4.7</version>
|
179 |
|
|
</dependency>
|
180 |
29799
|
marek.hors
|
|
181 |
|
|
<dependency>
|
182 |
|
|
<groupId>junit</groupId>
|
183 |
|
|
<artifactId>junit</artifactId>
|
184 |
|
|
<version>4.10</version>
|
185 |
|
|
<scope>test</scope>
|
186 |
|
|
</dependency>
|
187 |
17812
|
marek.hors
|
</dependencies>
|
188 |
|
|
<build>
|
189 |
|
|
</build>
|
190 |
|
|
</project>
|