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-search</artifactId>
11
	<packaging>jar</packaging>
12
	<version>3.0.1-SNAPSHOT</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/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>[2.0.0, 3.0.0)</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>org.mockito</groupId>
51
			<artifactId>mockito-all</artifactId>
52
			<version>1.6</version>
53
		</dependency>
54
		<dependency>
55
			<groupId>org.apache.solr</groupId>
56
			<artifactId>solr-solrj</artifactId>
57
			<version>${apache.solr.version}</version>
58
            <exclusions>
59
                <exclusion>
60
                    <groupId>org.apache.zookeeper</groupId>
61
                    <artifactId>zookeeper</artifactId>
62
                </exclusion>
63
            </exclusions>
64
		</dependency>
65
        <dependency>
66
            <groupId>org.apache.zookeeper</groupId>
67
            <artifactId>zookeeper</artifactId>
68
            <version>3.4.5-cdh4.3.0</version>
69
        </dependency>
70
		<dependency>
71
			<groupId>eu.dnetlib</groupId>
72
			<artifactId>cnr-cql-utils</artifactId>
73
			<version>[2.0.0, 3.0.0)</version>
74
			<scope>compile</scope>
75
		</dependency>
76
		<dependency>
77
			<groupId>eu.dnetlib</groupId>
78
			<artifactId>cnr-blackboard-common</artifactId>
79
			<version>[2.2.1, 3.0.0)</version>
80
		</dependency>
81

    
82
		<!-- Spring MVC framework -->
83
		<dependency>
84
			<groupId>org.springframework</groupId>
85
			<artifactId>spring-webmvc</artifactId>
86
			<version>${spring.version}</version>
87
		</dependency>
88

    
89
		<dependency>
90
			<groupId>org.apache.velocity</groupId>
91
			<artifactId>velocity</artifactId>
92
			<version>1.7</version>
93
		</dependency>
94

    
95
		<dependency>
96
			<groupId>asm</groupId>
97
			<artifactId>asm</artifactId>
98
			<version>3.3.1</version>
99
		</dependency>
100
		<dependency>
101
			<groupId>com.sun.jersey</groupId>
102
			<artifactId>jersey-bundle</artifactId>
103
			<version>1.19</version>
104
		</dependency>
105
		<dependency>
106
			<groupId>org.json</groupId>
107
			<artifactId>json</artifactId>
108
			<version>20140107</version>
109
		</dependency>
110
		<dependency>
111
			<groupId>com.sun.jersey</groupId>
112
			<artifactId>jersey-server</artifactId>
113
			<version>1.19</version>
114
		</dependency>
115
		<dependency>
116
			<groupId>com.sun.jersey</groupId>
117
			<artifactId>jersey-core</artifactId>
118
			<version>1.19</version>
119
		</dependency>
120
		<dependency>
121
			<groupId>commons-validator</groupId>
122
			<artifactId>commons-validator</artifactId>
123
			<version>1.6</version>
124
		</dependency>
125
		<dependency>
126
			<groupId>org.eclipse.persistence</groupId>
127
			<artifactId>org.eclipse.persistence.moxy</artifactId>
128
			<version>2.5.0</version>
129
		</dependency>
130
		<dependency>
131
			<groupId>com.sun.jersey.contribs</groupId>
132
			<artifactId>jersey-spring</artifactId>
133
			<version>1.8</version>
134
			<exclusions>
135
				<exclusion>
136
					<groupId>org.springframework</groupId>
137
					<artifactId>spring</artifactId>
138
				</exclusion>
139
				<exclusion>
140
					<groupId>org.springframework</groupId>
141
					<artifactId>spring-core</artifactId>
142
				</exclusion>
143
				<exclusion>
144
					<groupId>org.springframework</groupId>
145
					<artifactId>spring-web</artifactId>
146
				</exclusion>
147
				<exclusion>
148
					<groupId>org.springframework</groupId>
149
					<artifactId>spring-beans</artifactId>
150
				</exclusion>
151
				<exclusion>
152
					<groupId>org.springframework</groupId>
153
					<artifactId>spring-context</artifactId>
154
				</exclusion>
155
				<exclusion>
156
					<groupId>org.springframework</groupId>
157
					<artifactId>spring-utils</artifactId>
158
				</exclusion>
159
				<exclusion>
160
					<groupId>org.springframework</groupId>
161
					<artifactId>spring-aop</artifactId>
162
				</exclusion>
163
			</exclusions>
164
		</dependency>
165
		<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
166
		<dependency>
167
			<groupId>com.google.code.gson</groupId>
168
			<artifactId>gson</artifactId>
169
			<version>2.3.1</version>
170
		</dependency>
171
		<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
172
		<dependency>
173
			<groupId>org.apache.commons</groupId>
174
			<artifactId>commons-lang3</artifactId>
175
			<version>3.5</version>
176
		</dependency>
177
	</dependencies>
178

    
179
	<build>
180
		<plugins>
181
			<plugin>
182
				<artifactId>maven-assembly-plugin</artifactId>
183
				<configuration>
184
					<archive>
185

    
186
					</archive>
187
					<descriptorRefs>
188
						<descriptorRef>jar-with-dependencies</descriptorRef>
189
					</descriptorRefs>
190
				</configuration>
191
            </plugin>
192
			<plugin>
193
				<groupId>org.apache.maven.plugins</groupId>
194
				<artifactId>maven-compiler-plugin</artifactId>
195
				<configuration>
196
					<source>1.7</source>
197
					<target>1.7</target>
198
				</configuration>
199
			</plugin>
200
		</plugins>
201
	</build>
202
</project>
(2-2/2)