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.0-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
				<artifactId>maven-assembly-plugin</artifactId>
27
				<configuration>
28
					<archive>
29

    
30
                    </archive>
31
                    <descriptorRefs>
32
                        <descriptorRef>jar-with-dependencies</descriptorRef>
33
                    </descriptorRefs>
34
                </configuration>
35
            </plugin>
36
       
37
            <plugin>
38
                <groupId>org.apache.thrift.tools</groupId>
39
                <artifactId>maven-thrift-plugin</artifactId>
40
                <version>0.1.10</version>
41
                <executions>
42
                    <execution>
43
                        <id>thrift-sources</id>
44
                        <phase>generate-sources</phase>
45
                        <goals>
46
                            <goal>compile</goal>
47
                        </goals>
48
                    </execution>
49
                    <execution>
50
                        <id>thrift-test-sources</id>
51
                        <phase>generate-test-sources</phase>
52
                        <goals>
53
                            <goal>testCompile</goal>
54
                        </goals>
55
                    </execution>
56
                </executions>
57
            </plugin>
58
            
59
        </plugins>
60
    
61
        <pluginManagement>
62
            <plugins>
63
                This plugin's configuration is used to store Eclipse m2e settings
64
                    only. It has no influence on the Maven build itself.
65
                <plugin>
66
                    <groupId>org.eclipse.m2e</groupId>
67
                    <artifactId>lifecycle-mapping</artifactId>
68
                    <version>1.0.0</version>
69
                    <configuration>
70
                        <lifecycleMappingMetadata>
71
                            <pluginExecutions>
72
                                <pluginExecution>
73
                                    <pluginExecutionFilter>
74
                                        <groupId>org.apache.thrift.tools</groupId>
75
                                        <artifactId>maven-thrift-plugin</artifactId>
76
                                        <versionRange>[0.1.10,)</versionRange>
77
                                        <goals>
78
                                            <goal>testCompile</goal>
79
                                        </goals>
80
                                    </pluginExecutionFilter>
81
                                    <action>
82
                                        <ignore/>
83
                                    </action>
84
                                </pluginExecution>
85
                            </pluginExecutions>
86
                        </lifecycleMappingMetadata>
87
                    </configuration>
88
                </plugin>
89
            </plugins>
90
        </pluginManagement> -->
91
        <plugins>
92
            <plugin>
93
                <groupId>org.apache.maven.plugins</groupId>
94
                <artifactId>maven-compiler-plugin</artifactId>
95
                <configuration>
96
                    <source>1.7</source>
97
                    <target>1.7</target>
98
                </configuration>
99
            </plugin>
100
        </plugins>
101
    </build>
102
    <dependencies>
103
        <dependency>
104
            <groupId>junit</groupId>
105
            <artifactId>junit</artifactId>
106
            <version>[0.0.0,)</version>
107
            <scope>test</scope>
108
        </dependency>
109
        <dependency>
110
            <groupId>org.slf4j</groupId>
111
            <artifactId>slf4j-api</artifactId>
112
            <version>1.7.5</version>
113
        </dependency>
114
        <dependency>
115
            <groupId>commons-dbcp</groupId>
116
            <artifactId>commons-dbcp</artifactId>
117
            <version>[1.2, 1.3)</version>
118
        </dependency>
119
        <dependency>
120
            <groupId>eu.dnetlib</groupId>
121
            <artifactId>uoa-claims</artifactId>
122
            <version>[2.0.0-SNAPSHOT,)</version>
123
        </dependency>
124
        <dependency>
125
            <groupId>org.apache.thrift</groupId>
126
            <artifactId>libthrift</artifactId>
127
            <version>0.8.0</version>
128
        </dependency>
129
        <dependency>
130
            <groupId>org.postgresql</groupId>
131
            <artifactId>jdbc4driver</artifactId>
132
            <version>9.1</version>
133
        </dependency>
134
        <dependency>
135
            <groupId>org.apache.velocity</groupId>
136
            <artifactId>velocity</artifactId>
137
            <version>1.7</version>
138
        </dependency>
139
        <dependency>
140
            <groupId>org.springframework</groupId>
141
            <artifactId>spring-tx</artifactId>
142
            <version>${spring.version}</version>
143
        </dependency>
144
        <dependency>
145
            <groupId>org.springframework</groupId>
146
            <artifactId>spring-jdbc</artifactId>
147
            <version>${spring.version}</version>
148
        </dependency>
149

    
150
        <!-- Jersey -->
151
        <dependency>
152
            <groupId>asm</groupId>
153
            <artifactId>asm</artifactId>
154
            <version>3.3.1</version>
155
        </dependency>
156
        <dependency>
157
            <groupId>com.sun.jersey</groupId>
158
            <artifactId>jersey-bundle</artifactId>
159
            <version>1.19</version>
160
        </dependency>
161
        <dependency>
162
            <groupId>org.json</groupId>
163
            <artifactId>json</artifactId>
164
            <version>20140107</version>
165
        </dependency>
166
        <dependency>
167
            <groupId>com.sun.jersey</groupId>
168
            <artifactId>jersey-server</artifactId>
169
            <version>1.19</version>
170
        </dependency>
171
        <dependency>
172
            <groupId>com.sun.jersey</groupId>
173
            <artifactId>jersey-core</artifactId>
174
            <version>1.19</version>
175
        </dependency>
176
        <dependency>
177
            <groupId>commons-validator</groupId>
178
            <artifactId>commons-validator</artifactId>
179
            <version>1.3.1</version>
180
        </dependency>
181
        <dependency>
182
            <groupId>com.sun.jersey.contribs</groupId>
183
            <artifactId>jersey-spring</artifactId>
184
            <version>1.8</version>
185
            <exclusions>
186
                <exclusion>
187
                    <groupId>org.springframework</groupId>
188
                    <artifactId>spring</artifactId>
189
                </exclusion>
190
                <exclusion>
191
                    <groupId>org.springframework</groupId>
192
                    <artifactId>spring-core</artifactId>
193
                </exclusion>
194
                <exclusion>
195
                    <groupId>org.springframework</groupId>
196
                    <artifactId>spring-web</artifactId>
197
                </exclusion>
198
                <exclusion>
199
                    <groupId>org.springframework</groupId>
200
                    <artifactId>spring-beans</artifactId>
201
                </exclusion>
202
                <exclusion>
203
                    <groupId>org.springframework</groupId>
204
                    <artifactId>spring-context</artifactId>
205
                </exclusion>
206
                <exclusion>
207
                    <groupId>org.springframework</groupId>
208
                    <artifactId>spring-utils</artifactId>
209
                </exclusion>
210
                <exclusion>
211
                    <groupId>org.springframework</groupId>
212
                    <artifactId>spring-aop</artifactId>
213
                </exclusion>
214
            </exclusions>
215
        </dependency>
216
        <dependency>
217
            <groupId>io.jsonwebtoken</groupId>
218
            <artifactId>jjwt</artifactId>
219
            <version>0.7.0</version>
220
        </dependency>
221
        <!-- <dependency>
222
            <groupId>org.glassfish.jersey.containers</groupId>
223
            <artifactId>jersey-container-servlet</artifactId>
224
            <version>2.19</version>
225
        </dependency>
226
        <dependency>
227
            <groupId>org.glassfish.jersey.core</groupId>
228
            <artifactId>jersey-server</artifactId>
229
            <version>2.19</version>
230
        </dependency>
231
       <dependency>
232
            <groupId>org.glassfish.jersey.ext</groupId>
233
            <artifactId>jersey-spring3</artifactId>
234
            <version>2.19</version>
235
        </dependency> -->
236
    </dependencies>
237
</project>
(2-2/2)