1 |
26600
|
sandro.lab
|
<?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"
|
3 |
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
4 |
|
|
<parent>
|
5 |
|
|
<groupId>eu.dnetlib</groupId>
|
6 |
|
|
<artifactId>dnet-hadoop-parent</artifactId>
|
7 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
8 |
|
|
<relativePath></relativePath>
|
9 |
|
|
</parent>
|
10 |
|
|
<modelVersion>4.0.0</modelVersion>
|
11 |
|
|
<groupId>eu.dnetlib</groupId>
|
12 |
|
|
<artifactId>cnr-index-solr-common</artifactId>
|
13 |
|
|
<packaging>jar</packaging>
|
14 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
15 |
|
|
<dependencies>
|
16 |
|
|
<dependency>
|
17 |
|
|
<groupId>org.apache.solr</groupId>
|
18 |
|
|
<artifactId>solr-solrj</artifactId>
|
19 |
|
|
<version>${apache.solr.version}</version>
|
20 |
|
|
<exclusions>
|
21 |
|
|
<exclusion>
|
22 |
|
|
<artifactId>wstx-asl</artifactId>
|
23 |
|
|
<groupId>org.codehaus.woodstox</groupId>
|
24 |
|
|
</exclusion>
|
25 |
|
|
</exclusions>
|
26 |
|
|
</dependency>
|
27 |
|
|
<dependency>
|
28 |
|
|
<groupId>org.apache.httpcomponents</groupId>
|
29 |
|
|
<artifactId>httpclient</artifactId>
|
30 |
|
|
<version>4.2.2</version>
|
31 |
|
|
</dependency>
|
32 |
|
|
<dependency>
|
33 |
|
|
<groupId>com.google.guava</groupId>
|
34 |
|
|
<artifactId>guava</artifactId>
|
35 |
|
|
<version>${google.guava.version}</version>
|
36 |
|
|
</dependency>
|
37 |
|
|
<dependency>
|
38 |
|
|
<groupId>org.springframework</groupId>
|
39 |
|
|
<artifactId>spring-beans</artifactId>
|
40 |
|
|
<version>${spring.version}</version>
|
41 |
|
|
</dependency>
|
42 |
|
|
<dependency>
|
43 |
|
|
<groupId>junit</groupId>
|
44 |
|
|
<artifactId>junit</artifactId>
|
45 |
|
|
<version>${junit.version}</version>
|
46 |
|
|
<scope>test</scope>
|
47 |
|
|
</dependency>
|
48 |
|
|
<dependency>
|
49 |
|
|
<groupId>commons-collections</groupId>
|
50 |
|
|
<artifactId>commons-collections</artifactId>
|
51 |
|
|
<version>${commons.collections.version}</version>
|
52 |
|
|
</dependency>
|
53 |
|
|
<dependency>
|
54 |
|
|
<groupId>apache</groupId>
|
55 |
|
|
<artifactId>oro</artifactId>
|
56 |
|
|
<version>2.0.8</version>
|
57 |
|
|
</dependency>
|
58 |
|
|
<dependency>
|
59 |
|
|
<groupId>com.mycila</groupId>
|
60 |
|
|
<artifactId>xmltool</artifactId>
|
61 |
|
|
<version>3.3</version>
|
62 |
|
|
</dependency>
|
63 |
|
|
<dependency>
|
64 |
|
|
<groupId>eu.dnetlib</groupId>
|
65 |
|
|
<artifactId>cnr-misc-utils</artifactId>
|
66 |
30743
|
alessia.ba
|
<version>[1.0.0,2.0.0)</version>
|
67 |
26600
|
sandro.lab
|
</dependency>
|
68 |
|
|
</dependencies>
|
69 |
|
|
</project>
|