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

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

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

    
69
	</dependencies>
70

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

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