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>5.0.0</version>
14
    <scm>
15
        <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-actionmanager-common/tags/dnet-actionmanager-common-5.0.0</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>[4.0.0,5.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.0,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>org.apache.hbase</groupId>
76
            <artifactId>hbase</artifactId>
77
            <version>${apache.hbase.version}</version>
78
            <exclusions>
79
                <exclusion>
80
                    <groupId>tomcat</groupId>
81
                    <artifactId>jasper-runtime</artifactId>
82
                </exclusion>
83
                <exclusion>
84
                    <groupId>tomcat</groupId>
85
                    <artifactId>jasper-compiler</artifactId>
86
                </exclusion>
87
                <exclusion>
88
                    <artifactId>slf4j-api</artifactId>
89
                    <groupId>org.slf4j</groupId>
90
                </exclusion>
91
                <exclusion>
92
                    <artifactId>slf4j-log4j12</artifactId>
93
                    <groupId>org.slf4j</groupId>
94
                </exclusion>
95
                <exclusion>
96
                    <artifactId>commons-lang</artifactId>
97
                    <groupId>commons-lang</groupId>
98
                </exclusion>
99
                <exclusion>
100
                    <artifactId>commons-httpclient</artifactId>
101
                    <groupId>commons-httpclient</groupId>
102
                </exclusion>
103
                <exclusion>
104
                    <artifactId>httpclient</artifactId>
105
                    <groupId>org.apache.httpcomponents</groupId>
106
                </exclusion>
107
                <exclusion>
108
                    <artifactId>httpcore</artifactId>
109
                    <groupId>org.apache.httpcomponents</groupId>
110
                </exclusion>
111
                <exclusion>
112
                    <artifactId>jsp-api-2.1</artifactId>
113
                    <groupId>org.mortbay.jetty</groupId>
114
                </exclusion>
115
                <exclusion>
116
                    <artifactId>guava</artifactId>
117
                    <groupId>com.google.guava</groupId>
118
                </exclusion>
119
            </exclusions>
120
        </dependency>
121
        <dependency>
122
            <groupId>com.googlecode.protobuf-java-format</groupId>
123
            <artifactId>protobuf-java-format</artifactId>
124
            <version>1.2</version>
125
        </dependency>
126
        <dependency>
127
            <groupId>junit</groupId>
128
            <artifactId>junit</artifactId>
129
            <version>${junit.version}</version>
130
            <scope>test</scope>
131
        </dependency>
132
        <dependency>
133
            <groupId>org.springframework</groupId>
134
            <artifactId>spring-context</artifactId>
135
            <version>${spring.version}</version>
136
            <scope>test</scope>
137
        </dependency>
138
    </dependencies>
139
</project>
(3-3/3)