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.3.1</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-search/tags/uoa-search-1.3.1</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>[1.1.0, 1.2.0-SNAPSHOT)</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>eu.dnetlib</groupId>
51
			<artifactId>uoa-clients</artifactId>
52
			<version>[1.1.0, 1.2.0-SNAPSHOT)</version>
53
			<scope>test</scope>
54
		</dependency>
55
		<dependency>
56
			<groupId>org.mockito</groupId>
57
			<artifactId>mockito-all</artifactId>
58
			<version>1.6</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>org.apache.solr</groupId>
62
			<artifactId>solr-solrj</artifactId>
63
			<version>${apache.solr.version}</version>
64
            <exclusions>
65
                <exclusion>
66
                    <groupId>org.apache.zookeeper</groupId>
67
                    <artifactId>zookeeper</artifactId>
68
                </exclusion>
69
            </exclusions>
70
		</dependency>
71
        <dependency>
72
            <groupId>org.apache.zookeeper</groupId>
73
            <artifactId>zookeeper</artifactId>
74
            <version>3.4.5-cdh4.3.0</version>
75
        </dependency>
76
		<dependency>
77
			<groupId>eu.dnetlib</groupId>
78
			<artifactId>cnr-cql-utils</artifactId>
79
			<version>[1.0.1]</version>
80
			<scope>compile</scope>
81
		</dependency>
82
		<dependency>
83
			<groupId>eu.dnetlib</groupId>
84
			<artifactId>cnr-blackboard-common</artifactId>
85
			<version>[1.0.0]</version>
86
		</dependency>
87

    
88
		<!-- Spring MVC framework -->
89
		<dependency>
90
			<groupId>org.springframework</groupId>
91
			<artifactId>spring-webmvc</artifactId>
92
			<version>${spring.version}</version>
93
		</dependency>
94

    
95
		<dependency>
96
			<groupId>org.apache.velocity</groupId>
97
			<artifactId>velocity</artifactId>
98
			<version>1.7</version>
99
		</dependency>
100

    
101
	</dependencies>
102

    
103
	<build>
104
		<plugins>
105
			<plugin>
106
				<artifactId>maven-assembly-plugin</artifactId>
107
				<configuration>
108
					<archive>
109

    
110
					</archive>
111
					<descriptorRefs>
112
						<descriptorRef>jar-with-dependencies</descriptorRef>
113
					</descriptorRefs>
114
				</configuration>
115
            </plugin>
116
		</plugins>
117
	</build>
118
</project>
(2-2/2)