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-search</artifactId>
11
	<packaging>jar</packaging>
12
	<version>2.0.0-SNAPSHOT</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-search/trunk</developerConnection>
15
	</scm>
16
    <repositories>
17
        <!-- Cloudera Repositories -->
18
        <repository>
19
            <snapshots>
20
                <enabled>false</enabled>
21
            </snapshots>
22
            <id>cloudera-central</id>
23
            <name>cloundera-libs-release</name>
24
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
25
        </repository>
26
        <repository>
27
            <id>cloudera-snapshots</id>
28
            <name>cloudera-libs-snapshot</name>
29
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
30
        </repository>
31
        <repository>
32
            <id>typesafe</id>
33
            <name>typesafe-releases</name>
34
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
35
        </repository>
36
    </repositories>
37
	<dependencies>
38
		<dependency>
39
			<groupId>junit</groupId>
40
			<artifactId>junit</artifactId>
41
			<version>${junit.version}</version>
42
			<scope>test</scope>
43
		</dependency>
44
		<dependency>
45
			<groupId>eu.dnetlib</groupId>
46
			<artifactId>uoa-commons</artifactId>
47
			<version>[1.2.0, 2.0.0)</version>
48
			<exclusions>
49
				<exclusion>
50
					<groupId>eu.dnetlib</groupId>
51
					<artifactId>cnr-service-common</artifactId>
52
				</exclusion>
53
			</exclusions>
54
		</dependency>
55
		<dependency>
56
			<groupId>eu.dnetlib</groupId>
57
			<artifactId>uoa-clients</artifactId>
58
			<version>[1.1.0, 2.0.0)</version>
59
			<exclusions>
60
				<exclusion>
61
					<groupId>eu.dnetlib</groupId>
62
					<artifactId>cnr-service-common</artifactId>
63
				</exclusion>
64

    
65
				<exclusion>
66
					<groupId>eu.dnetlib</groupId>
67
					<artifactId>cnr-cql-utils</artifactId>
68
				</exclusion>
69
			</exclusions>
70
			<scope>test</scope>
71
		</dependency>
72
		<dependency>
73
			<groupId>org.mockito</groupId>
74
			<artifactId>mockito-all</artifactId>
75
			<version>1.6</version>
76
		</dependency>
77
		<dependency>
78
			<groupId>org.apache.solr</groupId>
79
			<artifactId>solr-solrj</artifactId>
80
			<version>${apache.solr.version}</version>
81
            <exclusions>
82
                <exclusion>
83
                    <groupId>org.apache.zookeeper</groupId>
84
                    <artifactId>zookeeper</artifactId>
85
                </exclusion>
86
            </exclusions>
87
		</dependency>
88
        <dependency>
89
            <groupId>org.apache.zookeeper</groupId>
90
            <artifactId>zookeeper</artifactId>
91
            <version>3.4.5-cdh4.3.0</version>
92
        </dependency>
93
		<dependency>
94
			<groupId>eu.dnetlib</groupId>
95
			<artifactId>cnr-cql-utils</artifactId>
96
			<version>[2.1.0]</version>
97
			<scope>compile</scope>
98
		</dependency>
99
		<dependency>
100
			<groupId>eu.dnetlib</groupId>
101
			<artifactId>cnr-blackboard-common</artifactId>
102
			<version>[1.0.0]</version>
103
			<exclusions>
104
				<exclusion>
105
					<groupId>eu.dnetlib</groupId>
106
					<artifactId>cnr-service-common</artifactId>
107
				</exclusion>
108
			</exclusions>
109
		</dependency>
110

    
111
		<!-- Spring MVC framework -->
112
		<dependency>
113
			<groupId>org.springframework</groupId>
114
			<artifactId>spring-webmvc</artifactId>
115
			<version>${spring.version}</version>
116
		</dependency>
117

    
118
		<dependency>
119
			<groupId>org.apache.velocity</groupId>
120
			<artifactId>velocity</artifactId>
121
			<version>1.7</version>
122
		</dependency>
123

    
124
		<dependency>
125
			<groupId>asm</groupId>
126
			<artifactId>asm</artifactId>
127
			<version>3.3.1</version>
128
		</dependency>
129
		<dependency>
130
			<groupId>com.sun.jersey</groupId>
131
			<artifactId>jersey-bundle</artifactId>
132
			<version>1.19</version>
133
		</dependency>
134
		<dependency>
135
			<groupId>org.json</groupId>
136
			<artifactId>json</artifactId>
137
			<version>20140107</version>
138
		</dependency>
139
		<dependency>
140
			<groupId>com.sun.jersey</groupId>
141
			<artifactId>jersey-server</artifactId>
142
			<version>1.19</version>
143
		</dependency>
144
		<dependency>
145
			<groupId>com.sun.jersey</groupId>
146
			<artifactId>jersey-core</artifactId>
147
			<version>1.19</version>
148
		</dependency>
149
		<dependency>
150
			<groupId>commons-validator</groupId>
151
			<artifactId>commons-validator</artifactId>
152
			<version>1.3.1</version>
153
		</dependency>
154
		<dependency>
155
			<groupId>org.eclipse.persistence</groupId>
156
			<artifactId>org.eclipse.persistence.moxy</artifactId>
157
			<version>2.5.0</version>
158
		</dependency>
159
		<dependency>
160
			<groupId>com.sun.jersey.contribs</groupId>
161
			<artifactId>jersey-spring</artifactId>
162
			<version>1.8</version>
163
			<exclusions>
164
				<exclusion>
165
					<groupId>org.springframework</groupId>
166
					<artifactId>spring</artifactId>
167
				</exclusion>
168
				<exclusion>
169
					<groupId>org.springframework</groupId>
170
					<artifactId>spring-core</artifactId>
171
				</exclusion>
172
				<exclusion>
173
					<groupId>org.springframework</groupId>
174
					<artifactId>spring-web</artifactId>
175
				</exclusion>
176
				<exclusion>
177
					<groupId>org.springframework</groupId>
178
					<artifactId>spring-beans</artifactId>
179
				</exclusion>
180
				<exclusion>
181
					<groupId>org.springframework</groupId>
182
					<artifactId>spring-context</artifactId>
183
				</exclusion>
184
				<exclusion>
185
					<groupId>org.springframework</groupId>
186
					<artifactId>spring-utils</artifactId>
187
				</exclusion>
188
				<exclusion>
189
					<groupId>org.springframework</groupId>
190
					<artifactId>spring-aop</artifactId>
191
				</exclusion>
192
			</exclusions>
193
		</dependency>
194
		<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
195
		<dependency>
196
			<groupId>com.google.code.gson</groupId>
197
			<artifactId>gson</artifactId>
198
			<version>2.3.1</version>
199
		</dependency>
200
		<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
201
		<dependency>
202
			<groupId>org.apache.commons</groupId>
203
			<artifactId>commons-lang3</artifactId>
204
			<version>3.5</version>
205
		</dependency>
206
	</dependencies>
207

    
208
	<build>
209
		<plugins>
210
			<plugin>
211
				<artifactId>maven-assembly-plugin</artifactId>
212
				<configuration>
213
					<archive>
214

    
215
					</archive>
216
					<descriptorRefs>
217
						<descriptorRef>jar-with-dependencies</descriptorRef>
218
					</descriptorRefs>
219
				</configuration>
220
            </plugin>
221
		</plugins>
222
	</build>
223
</project>
(2-2/2)