1 |
35070
|
alessia.ba
|
<?xml version="1.0" encoding="UTF-8"?>
|
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 |
|
|
<relativePath></relativePath>
|
9 |
|
|
</parent>
|
10 |
|
|
<modelVersion>4.0.0</modelVersion>
|
11 |
|
|
<artifactId>cnr-index-solr-service</artifactId>
|
12 |
|
|
<packaging>jar</packaging>
|
13 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
14 |
|
|
<repositories>
|
15 |
|
|
<!-- repo for Akka Actors -->
|
16 |
|
|
<repository>
|
17 |
|
|
<id>typesafe</id>
|
18 |
|
|
<name>typesafe-releases</name>
|
19 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
|
20 |
|
|
</repository>
|
21 |
|
|
</repositories>
|
22 |
|
|
<dependencies>
|
23 |
|
|
<!-- Akka Actors deps -->
|
24 |
|
|
<dependency>
|
25 |
|
|
<groupId>org.scala-lang</groupId>
|
26 |
|
|
<artifactId>scala-library</artifactId>
|
27 |
|
|
<version>2.9.2</version>
|
28 |
|
|
</dependency>
|
29 |
|
|
<dependency>
|
30 |
|
|
<groupId>com.typesafe</groupId>
|
31 |
|
|
<artifactId>config</artifactId>
|
32 |
|
|
<version>0.3.1</version>
|
33 |
|
|
</dependency>
|
34 |
|
|
<dependency>
|
35 |
|
|
<groupId>com.typesafe.akka</groupId>
|
36 |
|
|
<artifactId>akka-actor</artifactId>
|
37 |
|
|
<version>${akka.version}</version>
|
38 |
|
|
</dependency>
|
39 |
|
|
<!-- / Akka Actors deps -->
|
40 |
|
|
|
41 |
|
|
<!-- SOLR -->
|
42 |
|
|
<dependency>
|
43 |
|
|
<groupId>org.apache.solr</groupId>
|
44 |
|
|
<artifactId>solr-core</artifactId>
|
45 |
|
|
<version>4.3.1</version>
|
46 |
|
|
<exclusions>
|
47 |
|
|
<exclusion>
|
48 |
|
|
<groupId>org.codehaus.woodstox</groupId>
|
49 |
|
|
<artifactId>wstx-asl</artifactId>
|
50 |
|
|
</exclusion>
|
51 |
|
|
<exclusion>
|
52 |
|
|
<groupId>org.slf4j</groupId>
|
53 |
|
|
<artifactId>slf4j-jdk14</artifactId>
|
54 |
|
|
</exclusion>
|
55 |
|
|
<exclusion>
|
56 |
|
|
<groupId>org.slf4j</groupId>
|
57 |
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
58 |
|
|
</exclusion>
|
59 |
|
|
</exclusions>
|
60 |
|
|
</dependency>
|
61 |
|
|
<dependency>
|
62 |
|
|
<groupId>org.apache.solr</groupId>
|
63 |
|
|
<artifactId>solr-solrj</artifactId>
|
64 |
|
|
<version>4.3.1</version>
|
65 |
|
|
<exclusions>
|
66 |
|
|
<exclusion>
|
67 |
|
|
<groupId>org.codehaus.woodstox</groupId>
|
68 |
|
|
<artifactId>wstx-asl</artifactId>
|
69 |
|
|
</exclusion>
|
70 |
|
|
</exclusions>
|
71 |
|
|
</dependency>
|
72 |
|
|
<dependency>
|
73 |
|
|
<groupId>org.apache.solr</groupId>
|
74 |
|
|
<artifactId>solr-analysis-extras</artifactId>
|
75 |
|
|
<version>4.3.1</version>
|
76 |
|
|
</dependency>
|
77 |
|
|
<dependency>
|
78 |
|
|
<groupId>org.apache.lucene</groupId>
|
79 |
|
|
<artifactId>lucene-core</artifactId>
|
80 |
|
|
<version>${apache.solr.version}</version>
|
81 |
|
|
</dependency>
|
82 |
|
|
<dependency>
|
83 |
|
|
<groupId>org.apache.pdfbox</groupId>
|
84 |
|
|
<artifactId>pdfbox</artifactId>
|
85 |
|
|
<version>1.7.0</version>
|
86 |
|
|
</dependency>
|
87 |
|
|
<!-- / SOLR -->
|
88 |
|
|
|
89 |
|
|
<dependency>
|
90 |
|
|
<groupId>com.google.guava</groupId>
|
91 |
|
|
<artifactId>guava</artifactId>
|
92 |
|
|
<version>${google.guava.version}</version>
|
93 |
|
|
</dependency>
|
94 |
|
|
<dependency>
|
95 |
|
|
<groupId>org.z3950.zing</groupId>
|
96 |
|
|
<artifactId>cql-java</artifactId>
|
97 |
|
|
<version>1.7</version>
|
98 |
|
|
</dependency>
|
99 |
|
|
<dependency>
|
100 |
|
|
<groupId>junit</groupId>
|
101 |
|
|
<artifactId>junit</artifactId>
|
102 |
|
|
<version>${junit.version}</version>
|
103 |
|
|
<scope>test</scope>
|
104 |
|
|
</dependency>
|
105 |
|
|
<dependency>
|
106 |
|
|
<groupId>org.mockito</groupId>
|
107 |
|
|
<artifactId>mockito-core</artifactId>
|
108 |
|
|
<version>1.6</version>
|
109 |
|
|
<scope>test</scope>
|
110 |
|
|
</dependency>
|
111 |
|
|
<dependency>
|
112 |
|
|
<groupId>org.springframework</groupId>
|
113 |
|
|
<artifactId>spring-test</artifactId>
|
114 |
|
|
<version>${spring.version}</version>
|
115 |
|
|
<scope>test</scope>
|
116 |
|
|
</dependency>
|
117 |
|
|
<dependency>
|
118 |
|
|
<groupId>com.mycila</groupId>
|
119 |
|
|
<artifactId>xmltool</artifactId>
|
120 |
|
|
<version>3.3</version>
|
121 |
|
|
</dependency>
|
122 |
|
|
<dependency>
|
123 |
|
|
<groupId>eu.dnetlib</groupId>
|
124 |
|
|
<artifactId>dnet-zmq-utils</artifactId>
|
125 |
|
|
<version>[1.0.0-SNAPSHOT]</version>
|
126 |
|
|
</dependency>
|
127 |
|
|
<dependency>
|
128 |
|
|
<groupId>eu.dnetlib</groupId>
|
129 |
|
|
<artifactId>dnet-data-provision-rmi</artifactId>
|
130 |
|
|
<version>[0.0.1-SNAPSHOT]</version>
|
131 |
|
|
</dependency>
|
132 |
|
|
<dependency>
|
133 |
|
|
<groupId>eu.dnetlib</groupId>
|
134 |
|
|
<artifactId>cnr-resultset-service</artifactId>
|
135 |
|
|
<version>[1.0.0-SNAPSHOT]</version>
|
136 |
|
|
</dependency>
|
137 |
|
|
<dependency>
|
138 |
|
|
<groupId>eu.dnetlib</groupId>
|
139 |
|
|
<artifactId>cnr-blackboard-common</artifactId>
|
140 |
|
|
<version>[1.0.0-SNAPSHOT]</version>
|
141 |
|
|
</dependency>
|
142 |
|
|
<dependency>
|
143 |
|
|
<groupId>eu.dnetlib</groupId>
|
144 |
|
|
<artifactId>cnr-resultset-client</artifactId>
|
145 |
|
|
<version>[1.0.0-SNAPSHOT]</version>
|
146 |
|
|
</dependency>
|
147 |
|
|
<dependency>
|
148 |
|
|
<groupId>eu.dnetlib</groupId>
|
149 |
|
|
<artifactId>cnr-cql-utils</artifactId>
|
150 |
|
|
<version>[1.0.0-SNAPSHOT]</version>
|
151 |
|
|
</dependency>
|
152 |
|
|
<dependency>
|
153 |
|
|
<groupId>com.google.code.gson</groupId>
|
154 |
|
|
<artifactId>gson</artifactId>
|
155 |
|
|
<version>${google.gson.version}</version>
|
156 |
|
|
</dependency>
|
157 |
|
|
<dependency>
|
158 |
|
|
<groupId>javax.servlet</groupId>
|
159 |
|
|
<artifactId>javax.servlet-api</artifactId>
|
160 |
|
|
<version>${javax.servlet.version}</version>
|
161 |
|
|
<scope>provided</scope>
|
162 |
|
|
</dependency>
|
163 |
|
|
<dependency>
|
164 |
|
|
<groupId>commons-httpclient</groupId>
|
165 |
|
|
<artifactId>commons-httpclient</artifactId>
|
166 |
|
|
<version>3.1</version>
|
167 |
|
|
</dependency>
|
168 |
|
|
|
169 |
|
|
</dependencies>
|
170 |
|
|
</project>
|