Project

General

Profile

1
<?xml version="1.0"?>
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-SNAPSHOT</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-claims-api</artifactId>
11
	<version>2.0.3-SNAPSHOT</version>
12
        <scm>
13
                <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-claims-api/trunk</developerConnection>
14
        </scm>
15
	<pluginRepositories>
16
		<pluginRepository>
17
			<id>dtrotts</id>
18
			<name>Repository for maven thrift plugin</name>
19
			<url>http://maven.davidtrott.com/repository</url>
20
			<layout>default</layout>
21
		</pluginRepository>
22
	</pluginRepositories>
23
	<build>
24
        <plugins>
25
            <plugin>
26
                <groupId>org.apache.maven.plugins</groupId>
27
                <artifactId>maven-compiler-plugin</artifactId>
28
                <configuration>
29
                    <source>1.7</source>
30
                    <target>1.7</target>
31
                </configuration>
32
            </plugin>
33
        </plugins>
34
    </build>
35
    <dependencies>
36
        <dependency>
37
            <groupId>junit</groupId>
38
            <artifactId>junit</artifactId>
39
            <version>[0.0.0,)</version>
40
            <scope>test</scope>
41
        </dependency>
42
        <dependency>
43
            <groupId>org.slf4j</groupId>
44
            <artifactId>slf4j-api</artifactId>
45
            <version>1.7.5</version>
46
        </dependency>
47
        <dependency>
48
            <groupId>commons-dbcp</groupId>
49
            <artifactId>commons-dbcp</artifactId>
50
            <version>[1.2, 1.3)</version>
51
        </dependency>
52
        <dependency>
53
            <groupId>eu.dnetlib</groupId>
54
            <artifactId>uoa-claims</artifactId>
55
            <version>[2.0.0,3.0.0)</version>
56
        </dependency>
57
        <dependency>
58
            <groupId>javax.servlet</groupId>
59
            <artifactId>servlet-api</artifactId>
60
            <version>2.5</version>
61
            <scope>provided</scope>
62
        </dependency>
63
        <dependency>
64
            <groupId>org.postgresql</groupId>
65
            <artifactId>jdbc4driver</artifactId>
66
            <version>9.1</version>
67
        </dependency>
68
        <dependency>
69
            <groupId>org.springframework</groupId>
70
            <artifactId>spring-tx</artifactId>
71
            <version>${spring.version}</version>
72
        </dependency>
73
        <dependency>
74
            <groupId>org.springframework</groupId>
75
            <artifactId>spring-jdbc</artifactId>
76
            <version>${spring.version}</version>
77
        </dependency>
78
        <dependency>
79
            <groupId>oro</groupId>
80
            <artifactId>oro</artifactId>
81
            <version>2.0.8</version>
82
        </dependency>
83

    
84

    
85
        <!-- Jersey -->
86
        <dependency>
87
            <groupId>asm</groupId>
88
            <artifactId>asm</artifactId>
89
            <version>3.3.1</version>
90
        </dependency>
91
        <dependency>
92
            <groupId>com.sun.jersey</groupId>
93
            <artifactId>jersey-bundle</artifactId>
94
            <version>1.19</version>
95
        </dependency>
96
        <dependency>
97
            <groupId>org.json</groupId>
98
            <artifactId>json</artifactId>
99
            <version>20140107</version>
100
        </dependency>
101
        <dependency>
102
            <groupId>com.sun.jersey</groupId>
103
            <artifactId>jersey-server</artifactId>
104
            <version>1.19</version>
105
        </dependency>
106
        <dependency>
107
            <groupId>com.sun.jersey</groupId>
108
            <artifactId>jersey-core</artifactId>
109
            <version>1.19</version>
110
        </dependency>
111
        <dependency>
112
            <groupId>commons-validator</groupId>
113
            <artifactId>commons-validator</artifactId>
114
            <version>1.3.1</version>
115
        </dependency>
116
        <dependency>
117
            <groupId>com.sun.jersey.contribs</groupId>
118
            <artifactId>jersey-spring</artifactId>
119
            <version>1.8</version>
120
            <exclusions>
121
                <exclusion>
122
                    <groupId>org.springframework</groupId>
123
                    <artifactId>spring</artifactId>
124
                </exclusion>
125
                <exclusion>
126
                    <groupId>org.springframework</groupId>
127
                    <artifactId>spring-core</artifactId>
128
                </exclusion>
129
                <exclusion>
130
                    <groupId>org.springframework</groupId>
131
                    <artifactId>spring-web</artifactId>
132
                </exclusion>
133
                <exclusion>
134
                    <groupId>org.springframework</groupId>
135
                    <artifactId>spring-beans</artifactId>
136
                </exclusion>
137
                <exclusion>
138
                    <groupId>org.springframework</groupId>
139
                    <artifactId>spring-context</artifactId>
140
                </exclusion>
141
                <exclusion>
142
                    <groupId>org.springframework</groupId>
143
                    <artifactId>spring-utils</artifactId>
144
                </exclusion>
145
                <exclusion>
146
                    <groupId>org.springframework</groupId>
147
                    <artifactId>spring-aop</artifactId>
148
                </exclusion>
149
            </exclusions>
150
        </dependency>
151
        <dependency>
152
            <groupId>io.jsonwebtoken</groupId>
153
            <artifactId>jjwt</artifactId>
154
            <version>0.7.0</version>
155
        </dependency>
156
        <dependency>
157
            <groupId>eu.dnetlib</groupId>
158
            <artifactId>uoa-claims</artifactId>
159
            <version>2.0.1-SNAPSHOT</version>
160
        </dependency>
161
    </dependencies>
162
</project>
(2-2/2)