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</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.5.0</version>
13
	<scm>
14
                <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-search/tags/uoa-search-3.5.0</developerConnection> 
15
        </scm>
16

    
17
    <repositories>
18
        <!-- Cloudera Repositories -->
19
        <repository>
20
            <snapshots>
21
                <enabled>false</enabled>
22
            </snapshots>
23
            <id>cloudera-central</id>
24
            <name>cloundera-libs-release</name>
25
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
26
        </repository>
27
        <repository>
28
            <id>cloudera-snapshots</id>
29
            <name>cloudera-libs-snapshot</name>
30
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
31
        </repository>
32
        <repository>
33
            <id>typesafe</id>
34
            <name>typesafe-releases</name>
35
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
36
        </repository>
37
    </repositories>
38
	<dependencies>
39
		<dependency>
40
			<groupId>junit</groupId>
41
			<artifactId>junit</artifactId>
42
			<version>${junit.version}</version>
43
			<scope>test</scope>
44
		</dependency>
45
		<dependency>
46
			<groupId>eu.dnetlib</groupId>
47
			<artifactId>uoa-commons</artifactId>
48
			<version>[2.0.0, 3.0.0)</version>
49
		</dependency>
50
		<dependency>
51
			<groupId>org.mockito</groupId>
52
			<artifactId>mockito-all</artifactId>
53
			<version>1.6</version>
54
		</dependency>
55
		<dependency>
56
			<groupId>org.apache.solr</groupId>
57
			<artifactId>solr-solrj</artifactId>
58
			<version>7.2.1</version>
59
            <exclusions>
60
                <exclusion>
61
                    <groupId>org.apache.zookeeper</groupId>
62
                    <artifactId>zookeeper</artifactId>
63
                </exclusion>
64
            </exclusions>
65
		</dependency>
66
        <dependency>
67
            <groupId>org.apache.zookeeper</groupId>
68
            <artifactId>zookeeper</artifactId>
69
            <version>3.4.5-cdh4.3.0</version>
70
        </dependency>
71
		<dependency>
72
			<groupId>eu.dnetlib</groupId>
73
			<artifactId>cnr-cql-utils</artifactId>
74
			<version>[2.0.0, 3.0.0)</version>
75
			<scope>compile</scope>
76
		</dependency>
77
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79
			<artifactId>cnr-blackboard-common</artifactId>
80
			<version>[2.2.1, 3.0.0)</version>
81
		</dependency>
82

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

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

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

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

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