1 |
41950
|
sandro.lab
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
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>2.0.0-SNAPSHOT</version>
|
8 |
|
|
<relativePath />
|
9 |
|
|
</parent>
|
10 |
|
|
<modelVersion>4.0.0</modelVersion>
|
11 |
|
|
<groupId>eu.dnetlib</groupId>
|
12 |
42103
|
michele.ar
|
<artifactId>dnet-data-provision-services</artifactId>
|
13 |
41950
|
sandro.lab
|
<packaging>jar</packaging>
|
14 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
15 |
|
|
<scm>
|
16 |
42103
|
michele.ar
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-data-provision-services/trunk</developerConnection>
|
17 |
41950
|
sandro.lab
|
</scm>
|
18 |
|
|
|
19 |
|
|
|
20 |
|
|
<dependencies>
|
21 |
|
|
<!-- Dnet Dependencies -->
|
22 |
|
|
|
23 |
|
|
<dependency>
|
24 |
|
|
<groupId>eu.dnetlib</groupId>
|
25 |
|
|
<artifactId>dnet-core-components</artifactId>
|
26 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
27 |
|
|
</dependency>
|
28 |
|
|
<dependency>
|
29 |
|
|
<groupId>eu.dnetlib</groupId>
|
30 |
|
|
<artifactId>dnet-core-services</artifactId>
|
31 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
32 |
|
|
</dependency>
|
33 |
|
|
<dependency>
|
34 |
|
|
<groupId>org.springframework</groupId>
|
35 |
|
|
<artifactId>spring-test</artifactId>
|
36 |
|
|
<version>${spring.version}</version>
|
37 |
|
|
<scope>test</scope>
|
38 |
|
|
</dependency>
|
39 |
|
|
<dependency>
|
40 |
|
|
<groupId>org.mockito</groupId>
|
41 |
|
|
<artifactId>mockito-core</artifactId>
|
42 |
|
|
<version>1.6</version>
|
43 |
|
|
<scope>test</scope>
|
44 |
|
|
</dependency>
|
45 |
|
|
<dependency>
|
46 |
|
|
<groupId>junit</groupId>
|
47 |
|
|
<artifactId>junit</artifactId>
|
48 |
|
|
<version>${junit.version}</version>
|
49 |
|
|
<scope>test</scope>
|
50 |
|
|
</dependency>
|
51 |
41977
|
sandro.lab
|
|
52 |
|
|
<!-- Akka Actors deps -->
|
53 |
41950
|
sandro.lab
|
<dependency>
|
54 |
41977
|
sandro.lab
|
<groupId>org.scala-lang</groupId>
|
55 |
|
|
<artifactId>scala-library</artifactId>
|
56 |
|
|
<version>2.9.2</version>
|
57 |
41950
|
sandro.lab
|
</dependency>
|
58 |
|
|
<dependency>
|
59 |
41977
|
sandro.lab
|
<groupId>com.typesafe</groupId>
|
60 |
|
|
<artifactId>config</artifactId>
|
61 |
42969
|
claudio.at
|
<version>1.3.0</version>
|
62 |
41950
|
sandro.lab
|
</dependency>
|
63 |
|
|
<dependency>
|
64 |
41977
|
sandro.lab
|
<groupId>com.typesafe.akka</groupId>
|
65 |
42077
|
sandro.lab
|
<artifactId>akka-actor</artifactId>
|
66 |
|
|
<version>${akka.version}</version>
|
67 |
41950
|
sandro.lab
|
</dependency>
|
68 |
41977
|
sandro.lab
|
<!-- / Akka Actors deps -->
|
69 |
|
|
|
70 |
42077
|
sandro.lab
|
|
71 |
41950
|
sandro.lab
|
<dependency>
|
72 |
42149
|
sandro.lab
|
<groupId>commons-io</groupId>
|
73 |
|
|
<artifactId>commons-io</artifactId>
|
74 |
|
|
<version>${commons.io.version}</version>
|
75 |
|
|
</dependency>
|
76 |
42184
|
michele.ar
|
|
77 |
|
|
<dependency>
|
78 |
|
|
<groupId>org.mongodb</groupId>
|
79 |
|
|
<artifactId>mongo-java-driver</artifactId>
|
80 |
|
|
<version>${mongodb.driver.version}</version>
|
81 |
|
|
</dependency>
|
82 |
42149
|
sandro.lab
|
|
83 |
42184
|
michele.ar
|
<dependency>
|
84 |
|
|
<groupId>javax.servlet</groupId>
|
85 |
|
|
<artifactId>javax.servlet-api</artifactId>
|
86 |
|
|
<version>3.0.1</version>
|
87 |
|
|
<scope>provided</scope>
|
88 |
|
|
</dependency>
|
89 |
42149
|
sandro.lab
|
|
90 |
|
|
<dependency>
|
91 |
41977
|
sandro.lab
|
<groupId>org.apache.solr</groupId>
|
92 |
|
|
<artifactId>solr-solrj</artifactId>
|
93 |
|
|
<version>${apache.solr.version}</version>
|
94 |
|
|
<exclusions>
|
95 |
|
|
<exclusion>
|
96 |
|
|
<artifactId>wstx-asl</artifactId>
|
97 |
|
|
<groupId>org.codehaus.woodstox</groupId>
|
98 |
|
|
</exclusion>
|
99 |
42146
|
sandro.lab
|
<exclusion>
|
100 |
|
|
<groupId>org.slf4j</groupId>
|
101 |
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
102 |
|
|
</exclusion>
|
103 |
|
|
<exclusion>
|
104 |
|
|
<groupId>org.slf4j</groupId>
|
105 |
|
|
<artifactId>slf4j-api</artifactId>
|
106 |
|
|
</exclusion>
|
107 |
|
|
|
108 |
41977
|
sandro.lab
|
</exclusions>
|
109 |
41950
|
sandro.lab
|
</dependency>
|
110 |
|
|
</dependencies>
|
111 |
|
|
|
112 |
42077
|
sandro.lab
|
<repositories>
|
113 |
|
|
<!-- repo for Akka Actors -->
|
114 |
|
|
<repository>
|
115 |
|
|
<id>typesafe</id>
|
116 |
|
|
<name>typesafe-releases</name>
|
117 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
|
118 |
|
|
</repository>
|
119 |
|
|
</repositories>
|
120 |
|
|
|
121 |
41950
|
sandro.lab
|
</project>
|