1 |
26600
|
sandro.lab
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
30640
|
sandro.lab
|
<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 |
55755
|
claudio.at
|
<parent>
|
4 |
|
|
<groupId>eu.dnetlib</groupId>
|
5 |
|
|
<artifactId>dnet45-parent</artifactId>
|
6 |
|
|
<version>1.0.0</version>
|
7 |
|
|
<relativePath />
|
8 |
|
|
</parent>
|
9 |
|
|
<modelVersion>4.0.0</modelVersion>
|
10 |
|
|
<groupId>eu.dnetlib</groupId>
|
11 |
|
|
<artifactId>dnet-index-client</artifactId>
|
12 |
|
|
<packaging>jar</packaging>
|
13 |
55773
|
claudio.at
|
<version>2.3.5-SNAPSHOT</version>
|
14 |
55755
|
claudio.at
|
<scm>
|
15 |
55773
|
claudio.at
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-index-client/trunk</developerConnection>
|
16 |
55755
|
claudio.at
|
</scm>
|
17 |
|
|
<dependencies>
|
18 |
|
|
<dependency>
|
19 |
|
|
<groupId>org.springframework</groupId>
|
20 |
|
|
<artifactId>spring-beans</artifactId>
|
21 |
|
|
<version>${spring.version}</version>
|
22 |
|
|
</dependency>
|
23 |
|
|
<dependency>
|
24 |
|
|
<groupId>junit</groupId>
|
25 |
|
|
<artifactId>junit</artifactId>
|
26 |
|
|
<version>${junit.version}</version>
|
27 |
|
|
<scope>test</scope>
|
28 |
|
|
</dependency>
|
29 |
|
|
<dependency>
|
30 |
|
|
<groupId>org.mockito</groupId>
|
31 |
|
|
<artifactId>mockito-core</artifactId>
|
32 |
|
|
<version>${mockito.version}</version>
|
33 |
|
|
<scope>test</scope>
|
34 |
|
|
</dependency>
|
35 |
|
|
<dependency>
|
36 |
|
|
<groupId>com.google.code.gson</groupId>
|
37 |
|
|
<artifactId>gson</artifactId>
|
38 |
|
|
<version>${google.gson.version}</version>
|
39 |
|
|
</dependency>
|
40 |
29846
|
sandro.lab
|
|
41 |
55755
|
claudio.at
|
<dependency>
|
42 |
|
|
<groupId>com.mycila</groupId>
|
43 |
|
|
<artifactId>xmltool</artifactId>
|
44 |
|
|
<version>3.3</version>
|
45 |
|
|
</dependency>
|
46 |
|
|
<dependency>
|
47 |
|
|
<groupId>org.apache.solr</groupId>
|
48 |
|
|
<artifactId>solr-solrj</artifactId>
|
49 |
|
|
<version>7.5.0</version>
|
50 |
|
|
<exclusions>
|
51 |
|
|
<exclusion>
|
52 |
|
|
<artifactId>wstx-asl</artifactId>
|
53 |
|
|
<groupId>org.codehaus.woodstox</groupId>
|
54 |
|
|
</exclusion>
|
55 |
|
|
<exclusion>
|
56 |
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
57 |
|
|
<groupId>org.slf4j</groupId>
|
58 |
|
|
</exclusion>
|
59 |
|
|
</exclusions>
|
60 |
|
|
</dependency>
|
61 |
|
|
<dependency>
|
62 |
|
|
<groupId>eu.dnetlib</groupId>
|
63 |
|
|
<artifactId>dnet-index-solr-common</artifactId>
|
64 |
55770
|
claudio.at
|
<version>[2.3.4,3.0.0)</version>
|
65 |
55755
|
claudio.at
|
</dependency>
|
66 |
|
|
<dependency>
|
67 |
|
|
<groupId>eu.dnetlib</groupId>
|
68 |
|
|
<artifactId>cnr-service-common</artifactId>
|
69 |
|
|
<version>[2.1.0,3.0.0)</version>
|
70 |
|
|
</dependency>
|
71 |
|
|
<dependency>
|
72 |
|
|
<groupId>eu.dnetlib</groupId>
|
73 |
|
|
<artifactId>cnr-cql-utils</artifactId>
|
74 |
|
|
<version>[2.0.0,3.0.0)</version>
|
75 |
|
|
</dependency>
|
76 |
|
|
<dependency>
|
77 |
|
|
<groupId>eu.dnetlib</groupId>
|
78 |
|
|
<artifactId>dnet-data-provision-rmi</artifactId>
|
79 |
|
|
<version>[1.0.0,2.0.0)</version>
|
80 |
|
|
</dependency>
|
81 |
|
|
</dependencies>
|
82 |
26600
|
sandro.lab
|
</project>
|