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-actionmanager-common</artifactId>
12
    <packaging>jar</packaging>
13
    <version>6.0.4-SNAPSHOT</version>
14
    <scm>
15
        <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-actionmanager-common/trunk</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>jasper-compiler</artifactId>
62
                <groupId>tomcat</groupId>
63
              </exclusion>
64
              <exclusion>
65
                <artifactId>jasper-runtime</artifactId>
66
                <groupId>tomcat</groupId>
67
              </exclusion>
68
              <exclusion>
69
                <artifactId>mockito-all</artifactId>
70
                <groupId>org.mockito</groupId>
71
              </exclusion>
72
              <exclusion>
73
                <artifactId>jetty</artifactId>
74
                <groupId>org.mortbay.jetty</groupId>
75
              </exclusion>
76
              <exclusion>
77
                <artifactId>jetty-util</artifactId>
78
                <groupId>org.mortbay.jetty</groupId>
79
              </exclusion>
80
              <exclusion>
81
                <artifactId>core</artifactId>
82
                <groupId>org.eclipse.jdt</groupId>
83
              </exclusion>
84
              <exclusion>
85
                <groupId>javax.servlet</groupId>
86
                <artifactId>servlet-api</artifactId>
87
              </exclusion>
88
              <exclusion>
89
                <artifactId>slf4j-api</artifactId>
90
                <groupId>org.slf4j</groupId>
91
              </exclusion>
92
              <exclusion>
93
                <artifactId>slf4j-log4j12</artifactId>
94
                <groupId>org.slf4j</groupId>
95
              </exclusion>
96
              <exclusion>
97
                <artifactId>jsp-api</artifactId>
98
                <groupId>javax.servlet.jsp</groupId>
99
              </exclusion>
100
              <exclusion>
101
                <artifactId>guava</artifactId>
102
                <groupId>com.google.guava</groupId>
103
              </exclusion>
104
            </exclusions>
105
        </dependency>
106
        <dependency>
107
            <groupId>com.googlecode.protobuf-java-format</groupId>
108
            <artifactId>protobuf-java-format</artifactId>
109
            <version>1.2</version>
110
        </dependency>
111
        <dependency>
112
            <groupId>junit</groupId>
113
            <artifactId>junit</artifactId>
114
            <version>${junit.version}</version>
115
            <scope>test</scope>
116
        </dependency>
117
        <dependency>
118
            <groupId>org.springframework</groupId>
119
            <artifactId>spring-context</artifactId>
120
            <version>${spring.version}</version>
121
            <scope>test</scope>
122
        </dependency>
123
    </dependencies>
124
</project>
(3-3/3)