1
|
<?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" 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>2.0.0-SNAPSHOT</version>
|
7
|
<relativePath />
|
8
|
</parent>
|
9
|
<modelVersion>4.0.0</modelVersion>
|
10
|
<groupId>eu.dnetlib</groupId>
|
11
|
<artifactId>dnet-msro-service</artifactId>
|
12
|
<packaging>jar</packaging>
|
13
|
<version>7.0.0-SAXONHE-SOLR772-SNAPSHOT</version>
|
14
|
<scm>
|
15
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-msro-service/branches/saxonHE-SOLR772</developerConnection>
|
16
|
</scm>
|
17
|
<repositories>
|
18
|
<repository>
|
19
|
<id>FORTH-ISL-releases</id>
|
20
|
<name>FORTH ISL Nexus repository - Releases</name>
|
21
|
<url>http://athena.ics.forth.gr:8081/repository/FORTH-ISL-releases/</url>
|
22
|
</repository>
|
23
|
<repository>
|
24
|
<id>FORTH-ISL-snapshots</id>
|
25
|
<name>FORTH ISL Nexus repository - Snapshots</name>
|
26
|
<url>http://athena.ics.forth.gr:8081/repository/FORTH-ISL-snapshots/</url>
|
27
|
</repository>
|
28
|
</repositories>
|
29
|
|
30
|
<dependencies>
|
31
|
<dependency>
|
32
|
<groupId>eu.dnetlib</groupId>
|
33
|
<artifactId>dnet-core-services</artifactId>
|
34
|
<version>[2.0.1-SAXONHE-SOLR772-SNAPSHOT]</version>
|
35
|
</dependency>
|
36
|
<dependency>
|
37
|
<groupId>org.mongodb</groupId>
|
38
|
<artifactId>mongo-java-driver</artifactId>
|
39
|
<version>${mongodb.driver.version}</version>
|
40
|
</dependency>
|
41
|
<dependency>
|
42
|
<groupId>com.typesafe</groupId>
|
43
|
<artifactId>config</artifactId>
|
44
|
<version>1.3.0</version>
|
45
|
</dependency>
|
46
|
<dependency>
|
47
|
<groupId>javax.mail</groupId>
|
48
|
<artifactId>mail</artifactId>
|
49
|
<version>1.4.7</version>
|
50
|
</dependency>
|
51
|
<dependency>
|
52
|
<groupId>org.codehaus.groovy</groupId>
|
53
|
<artifactId>groovy-all</artifactId>
|
54
|
<version>2.4.6</version>
|
55
|
</dependency>
|
56
|
<dependency>
|
57
|
<groupId>gr.forth.ics.isl</groupId>
|
58
|
<artifactId>x3ml-engine</artifactId>
|
59
|
<version>[1.9.3]</version>
|
60
|
<exclusions>
|
61
|
<exclusion>
|
62
|
<groupId>org.slf4j</groupId>
|
63
|
<artifactId>slf4j-log4j12</artifactId>
|
64
|
</exclusion>
|
65
|
<exclusion>
|
66
|
<groupId>log4j</groupId>
|
67
|
<artifactId>log4j</artifactId>
|
68
|
</exclusion>
|
69
|
</exclusions>
|
70
|
</dependency>
|
71
|
<dependency>
|
72
|
<groupId>junit</groupId>
|
73
|
<artifactId>junit</artifactId>
|
74
|
<version>${junit.version}</version>
|
75
|
<scope>test</scope>
|
76
|
</dependency>
|
77
|
</dependencies>
|
78
|
|
79
|
<properties>
|
80
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
81
|
</properties>
|
82
|
|
83
|
</project>
|