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

    
94
		<!-- Spring MVC framework -->
95
		<dependency>
96
			<groupId>org.springframework</groupId>
97
			<artifactId>spring-webmvc</artifactId>
98
			<version>${spring.version}</version>
99
		</dependency>
100

    
101
		<dependency>
102
			<groupId>org.apache.velocity</groupId>
103
			<artifactId>velocity</artifactId>
104
			<version>1.7</version>
105
		</dependency>
106

    
107
	</dependencies>
108

    
109
	<build>
110
		<plugins>
111
			<plugin>
112
				<artifactId>maven-assembly-plugin</artifactId>
113
				<configuration>
114
					<archive>
115

    
116
					</archive>
117
					<descriptorRefs>
118
						<descriptorRef>jar-with-dependencies</descriptorRef>
119
					</descriptorRefs>
120
				</configuration>
121
            </plugin>
122
		</plugins>
123
	</build>
124
</project>
(2-2/2)