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>dnet-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-actionmanager-common</artifactId>
12
    <packaging>jar</packaging>
13
    <version>6.0.2</version>
14
    <scm>
15
        <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-actionmanager-common/tags/dnet-actionmanager-common-6.0.2</developerConnection>
16
    </scm>
17
    <repositories>
18
        <!-- Cloudera Repositories -->
19
        <repository>
20
            <snapshots>
21
                <enabled>false</enabled>
22
            </snapshots>
23
            <id>cloudera-central</id>
24
            <name>cloundera-libs-release</name>
25
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
26
        </repository>
27
        <repository>
28
            <id>cloudera-snapshots</id>
29
            <name>cloudera-libs-snapshot</name>
30
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
31
        </repository>
32
    </repositories>
33
    <dependencies>
34
        <dependency>
35
            <groupId>apache</groupId>
36
            <artifactId>commons-logging</artifactId>
37
            <version>[1.0.0,1.1.0)</version>
38
        </dependency>
39
        <dependency>
40
            <groupId>eu.dnetlib</groupId>
41
            <artifactId>dnet-openaireplus-mapping-utils</artifactId>
42
            <version>[6.0.0,7.0.0)</version>
43
            <exclusions>
44
                <exclusion>
45
                    <artifactId>jsp-api</artifactId>
46
                    <groupId>javax.servlet.jsp</groupId>
47
                </exclusion>
48
            </exclusions>
49
        </dependency>
50
        <dependency>
51
            <groupId>eu.dnetlib</groupId>
52
            <artifactId>dnet-actionmanager-api</artifactId>
53
            <version>[4.0.1,5.0.0)</version>
54
        </dependency>
55
        <dependency>
56
            <groupId>org.apache.hadoop</groupId>
57
            <artifactId>hadoop-common</artifactId>
58
            <version>${hadoop.common.version}</version>
59
            <exclusions>
60
                <exclusion>
61
                    <artifactId>servlet-api</artifactId>
62
                    <groupId>javax.servlet</groupId>
63
                </exclusion>
64
                <exclusion>
65
                    <artifactId>jsp-api</artifactId>
66
                    <groupId>javax.servlet.jsp</groupId>
67
                </exclusion>
68
                <exclusion>
69
                    <artifactId>guava</artifactId>
70
                    <groupId>com.google.guava</groupId>
71
                </exclusion>
72
            </exclusions>
73
        </dependency>
74
        <dependency>
75
            <groupId>com.googlecode.protobuf-java-format</groupId>
76
            <artifactId>protobuf-java-format</artifactId>
77
            <version>1.2</version>
78
        </dependency>
79
        <dependency>
80
            <groupId>junit</groupId>
81
            <artifactId>junit</artifactId>
82
            <version>${junit.version}</version>
83
            <scope>test</scope>
84
        </dependency>
85
        <dependency>
86
            <groupId>org.springframework</groupId>
87
            <artifactId>spring-context</artifactId>
88
            <version>${spring.version}</version>
89
            <scope>test</scope>
90
        </dependency>
91
    </dependencies>
92
</project>
(3-3/3)