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"
|
3
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
4
|
<parent>
|
5
|
<groupId>eu.dnetlib</groupId>
|
6
|
<artifactId>dnet-parent</artifactId>
|
7
|
<version>0.0.1-alpha</version>
|
8
|
</parent>
|
9
|
<modelVersion>4.0.0</modelVersion>
|
10
|
<groupId>eu.dnetlib</groupId>
|
11
|
<artifactId>uoa-search</artifactId>
|
12
|
<packaging>jar</packaging>
|
13
|
<version>0.0.9-SNAPSHOT</version>
|
14
|
<dependencies>
|
15
|
<dependency>
|
16
|
<groupId>junit</groupId>
|
17
|
<artifactId>junit</artifactId>
|
18
|
<version>[0.0.0,)</version>
|
19
|
<scope>test</scope>
|
20
|
</dependency>
|
21
|
<dependency>
|
22
|
<groupId>eu.dnetlib</groupId>
|
23
|
<artifactId>uoa-commons</artifactId>
|
24
|
<version>[0.0.0-SNAPSHOT,)</version>
|
25
|
</dependency>
|
26
|
<dependency>
|
27
|
<groupId>eu.dnetlib</groupId>
|
28
|
<artifactId>uoa-clients</artifactId>
|
29
|
<version>[0.0.0-SNAPSHOT,)</version>
|
30
|
<scope>test</scope>
|
31
|
</dependency>
|
32
|
<dependency>
|
33
|
<groupId>org.mockito</groupId>
|
34
|
<artifactId>mockito-all</artifactId>
|
35
|
<version>1.6</version>
|
36
|
</dependency>
|
37
|
|
38
|
<dependency>
|
39
|
<groupId>org.apache.solr</groupId>
|
40
|
<artifactId>solr-solrj</artifactId>
|
41
|
<version>${apache.solr.version}</version>
|
42
|
</dependency>
|
43
|
<dependency>
|
44
|
<groupId>eu.dnetlib</groupId>
|
45
|
<artifactId>cnr-cql-utils</artifactId>
|
46
|
<version>[0.0.5-SNAPSHOT, ]</version>
|
47
|
<scope>compile</scope>
|
48
|
</dependency>
|
49
|
|
50
|
<!-- Spring MVC framework -->
|
51
|
<dependency>
|
52
|
<groupId>org.springframework</groupId>
|
53
|
<artifactId>spring-webmvc</artifactId>
|
54
|
<version>2.5.6</version>
|
55
|
</dependency>
|
56
|
|
57
|
</dependencies>
|
58
|
|
59
|
<build>
|
60
|
<plugins>
|
61
|
<plugin>
|
62
|
<artifactId>maven-assembly-plugin</artifactId>
|
63
|
<configuration>
|
64
|
<archive>
|
65
|
|
66
|
</archive>
|
67
|
<descriptorRefs>
|
68
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
69
|
</descriptorRefs>
|
70
|
</configuration>
|
71
|
</plugin>
|
72
|
</plugins>
|
73
|
</build>
|
74
|
</project>
|