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>dnet-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-openaire-connector</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

    
92
    </build>
93
    <dependencies>
94
        <dependency>
95
            <groupId>junit</groupId>
96
            <artifactId>junit</artifactId>
97
            <version>[0.0.0,)</version>
98
            <scope>test</scope>
99
        </dependency>
100
        <dependency>
101
            <groupId>org.slf4j</groupId>
102
            <artifactId>slf4j-api</artifactId>
103
            <version>1.7.5</version>
104
        </dependency>
105
        <dependency>
106
            <groupId>commons-dbcp</groupId>
107
            <artifactId>commons-dbcp</artifactId>
108
            <version>[1.2, 1.3)</version>
109
        </dependency>
110
        <dependency>
111
            <groupId>eu.dnetlib</groupId>
112
            <artifactId>uoa-claims-demo</artifactId>
113
            <version>[1.0.0-SNAPSHOT,)</version>
114
        </dependency>
115
        <dependency>
116
            <groupId>org.apache.thrift</groupId>
117
            <artifactId>libthrift</artifactId>
118
            <version>0.8.0</version>
119
        </dependency>
120
        <dependency>
121
            <groupId>org.postgresql</groupId>
122
            <artifactId>jdbc4driver</artifactId>
123
            <version>9.1</version>
124
        </dependency>
125
        <dependency>
126
            <groupId>org.apache.velocity</groupId>
127
            <artifactId>velocity</artifactId>
128
            <version>1.7</version>
129
        </dependency>
130
        <dependency>
131
            <groupId>org.springframework</groupId>
132
            <artifactId>spring-tx</artifactId>
133
            <version>${spring.version}</version>
134
        </dependency>
135
        <dependency>
136
            <groupId>org.springframework</groupId>
137
            <artifactId>spring-jdbc</artifactId>
138
            <version>${spring.version}</version>
139
        </dependency>
140

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