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.1-SNAPSHOT</version>
|
12
|
<scm>
|
13
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-openaire-connector/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-SNAPSHOT,)</version>
|
56
|
</dependency>
|
57
|
<dependency>
|
58
|
<groupId>org.postgresql</groupId>
|
59
|
<artifactId>jdbc4driver</artifactId>
|
60
|
<version>9.1</version>
|
61
|
</dependency>
|
62
|
<dependency>
|
63
|
<groupId>org.springframework</groupId>
|
64
|
<artifactId>spring-tx</artifactId>
|
65
|
<version>${spring.version}</version>
|
66
|
</dependency>
|
67
|
<dependency>
|
68
|
<groupId>org.springframework</groupId>
|
69
|
<artifactId>spring-jdbc</artifactId>
|
70
|
<version>${spring.version}</version>
|
71
|
</dependency>
|
72
|
|
73
|
<!-- Jersey -->
|
74
|
<dependency>
|
75
|
<groupId>asm</groupId>
|
76
|
<artifactId>asm</artifactId>
|
77
|
<version>3.3.1</version>
|
78
|
</dependency>
|
79
|
<dependency>
|
80
|
<groupId>com.sun.jersey</groupId>
|
81
|
<artifactId>jersey-bundle</artifactId>
|
82
|
<version>1.19</version>
|
83
|
</dependency>
|
84
|
<dependency>
|
85
|
<groupId>org.json</groupId>
|
86
|
<artifactId>json</artifactId>
|
87
|
<version>20140107</version>
|
88
|
</dependency>
|
89
|
<dependency>
|
90
|
<groupId>com.sun.jersey</groupId>
|
91
|
<artifactId>jersey-server</artifactId>
|
92
|
<version>1.19</version>
|
93
|
</dependency>
|
94
|
<dependency>
|
95
|
<groupId>com.sun.jersey</groupId>
|
96
|
<artifactId>jersey-core</artifactId>
|
97
|
<version>1.19</version>
|
98
|
</dependency>
|
99
|
<dependency>
|
100
|
<groupId>commons-validator</groupId>
|
101
|
<artifactId>commons-validator</artifactId>
|
102
|
<version>1.3.1</version>
|
103
|
</dependency>
|
104
|
<dependency>
|
105
|
<groupId>com.sun.jersey.contribs</groupId>
|
106
|
<artifactId>jersey-spring</artifactId>
|
107
|
<version>1.8</version>
|
108
|
<exclusions>
|
109
|
<exclusion>
|
110
|
<groupId>org.springframework</groupId>
|
111
|
<artifactId>spring</artifactId>
|
112
|
</exclusion>
|
113
|
<exclusion>
|
114
|
<groupId>org.springframework</groupId>
|
115
|
<artifactId>spring-core</artifactId>
|
116
|
</exclusion>
|
117
|
<exclusion>
|
118
|
<groupId>org.springframework</groupId>
|
119
|
<artifactId>spring-web</artifactId>
|
120
|
</exclusion>
|
121
|
<exclusion>
|
122
|
<groupId>org.springframework</groupId>
|
123
|
<artifactId>spring-beans</artifactId>
|
124
|
</exclusion>
|
125
|
<exclusion>
|
126
|
<groupId>org.springframework</groupId>
|
127
|
<artifactId>spring-context</artifactId>
|
128
|
</exclusion>
|
129
|
<exclusion>
|
130
|
<groupId>org.springframework</groupId>
|
131
|
<artifactId>spring-utils</artifactId>
|
132
|
</exclusion>
|
133
|
<exclusion>
|
134
|
<groupId>org.springframework</groupId>
|
135
|
<artifactId>spring-aop</artifactId>
|
136
|
</exclusion>
|
137
|
</exclusions>
|
138
|
</dependency>
|
139
|
<dependency>
|
140
|
<groupId>io.jsonwebtoken</groupId>
|
141
|
<artifactId>jjwt</artifactId>
|
142
|
<version>0.7.0</version>
|
143
|
</dependency>
|
144
|
</dependencies>
|
145
|
</project>
|