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"
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>1.0.0-SNAPSHOT</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>1.0.0-SNAPSHOT</version>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-search/trunk</developerConnection>
16
	</scm>
17
	<dependencies>
18
		<dependency>
19
			<groupId>junit</groupId>
20
			<artifactId>junit</artifactId>
21
			<version>${junit.version}</version>
22
			<scope>test</scope>
23
		</dependency>
24
		<dependency>
25
			<groupId>eu.dnetlib</groupId>
26
			<artifactId>uoa-commons</artifactId>
27
			<version>[1.0.0]</version>
28
		</dependency>
29
		<dependency>
30
			<groupId>eu.dnetlib</groupId>
31
			<artifactId>uoa-clients</artifactId>
32
			<version>[1.0.0-SNAPSHOT]</version>
33
			<scope>test</scope>
34
		</dependency>
35
		<dependency>
36
			<groupId>org.mockito</groupId>
37
			<artifactId>mockito-all</artifactId>
38
			<version>1.6</version>
39
		</dependency>
40
		<dependency>
41
			<groupId>org.apache.solr</groupId>
42
			<artifactId>solr-solrj</artifactId>
43
			<version>${apache.solr.version}</version>
44
		</dependency>
45
		<dependency>
46
			<groupId>eu.dnetlib</groupId>
47
			<artifactId>cnr-cql-utils</artifactId>
48
			<version>[1.0.1]</version>
49
			<scope>compile</scope>
50
		</dependency>
51
		<dependency>
52
			<groupId>eu.dnetlib</groupId>
53
			<artifactId>cnr-blackboard-common</artifactId>
54
			<version>[1.0.0]</version>
55
		</dependency>
56

    
57
		<!-- Spring MVC framework -->
58
		<dependency>
59
			<groupId>org.springframework</groupId>
60
			<artifactId>spring-webmvc</artifactId>
61
			<version>${spring.version}</version>
62
		</dependency>
63

    
64
		<dependency>
65
			<groupId>org.apache.velocity</groupId>
66
			<artifactId>velocity</artifactId>
67
			<version>1.7</version>
68
		</dependency>
69

    
70
	</dependencies>
71

    
72
	<build>
73
		<plugins>
74
			<plugin>
75
				<artifactId>maven-assembly-plugin</artifactId>
76
				<configuration>
77
					<archive>
78

    
79
					</archive>
80
					<descriptorRefs>
81
						<descriptorRef>jar-with-dependencies</descriptorRef>
82
					</descriptorRefs>
83
				</configuration>
84
			</plugin>
85
		</plugins>
86
	</build>
87
</project>
(2-2/2)