Project

General

Profile

1
<?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>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
    <version>2.3.2-solr75</version>
14
    <scm>
15
        <developerConnection>
16
            scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-index-client/tags/dnet-index-client-2.3.2-solr75
17
        </developerConnection>
18
    </scm>
19
    <dependencies>
20
        <dependency>
21
            <groupId>org.springframework</groupId>
22
            <artifactId>spring-beans</artifactId>
23
            <version>${spring.version}</version>
24
        </dependency>
25
        <dependency>
26
            <groupId>junit</groupId>
27
            <artifactId>junit</artifactId>
28
            <version>${junit.version}</version>
29
            <scope>test</scope>
30
        </dependency>
31
        <dependency>
32
            <groupId>org.mockito</groupId>
33
            <artifactId>mockito-core</artifactId>
34
            <version>${mockito.version}</version>
35
            <scope>test</scope>
36
        </dependency>
37
        <dependency>
38
            <groupId>com.google.code.gson</groupId>
39
            <artifactId>gson</artifactId>
40
            <version>${google.gson.version}</version>
41
        </dependency>
42

    
43
        <dependency>
44
            <groupId>com.mycila</groupId>
45
            <artifactId>xmltool</artifactId>
46
            <version>3.3</version>
47
        </dependency>
48
        <dependency>
49
            <groupId>org.apache.solr</groupId>
50
            <artifactId>solr-solrj</artifactId>
51
            <version>7.5.0</version>
52
            <exclusions>
53
                <exclusion>
54
                    <artifactId>wstx-asl</artifactId>
55
                    <groupId>org.codehaus.woodstox</groupId>
56
                </exclusion>
57
                <exclusion>
58
                    <artifactId>jcl-over-slf4j</artifactId>
59
                    <groupId>org.slf4j</groupId>
60
                </exclusion>
61
            </exclusions>
62
        </dependency>
63
        <dependency>
64
            <groupId>eu.dnetlib</groupId>
65
            <artifactId>dnet-index-solr-common</artifactId>
66
            <version>[2.3.2-solr75]</version>
67
        </dependency>
68
        <dependency>
69
            <groupId>eu.dnetlib</groupId>
70
            <artifactId>cnr-service-common</artifactId>
71
            <version>[2.1.0,3.0.0)</version>
72
        </dependency>
73
        <dependency>
74
            <groupId>eu.dnetlib</groupId>
75
            <artifactId>cnr-cql-utils</artifactId>
76
            <version>[2.0.0,3.0.0)</version>
77
        </dependency>
78
        <dependency>
79
            <groupId>eu.dnetlib</groupId>
80
            <artifactId>dnet-data-provision-rmi</artifactId>
81
            <version>[1.0.0,2.0.0)</version>
82
        </dependency>
83
    </dependencies>
84
</project>
(2-2/2)