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"
|
3
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4
|
<modelVersion>4.0.0</modelVersion>
|
5
|
<artifactId>dnet-is-application</artifactId>
|
6
|
<version>0.0.1-SNAPSHOT</version>
|
7
|
<packaging>jar</packaging>
|
8
|
|
9
|
<name>dnet-is-application</name>
|
10
|
<description>DNet Information Service Application</description>
|
11
|
|
12
|
<parent>
|
13
|
<groupId>eu.dnetlib</groupId>
|
14
|
<artifactId>dnet-springboot-apps</artifactId>
|
15
|
<version>0.0.1-SNAPSHOT</version>
|
16
|
<relativePath>../pom.xml</relativePath>
|
17
|
</parent>
|
18
|
|
19
|
<properties>
|
20
|
<main.basedir>${basedir}/../..</main.basedir>
|
21
|
</properties>
|
22
|
|
23
|
<dependencies>
|
24
|
|
25
|
<!-- for /metrics and /health controllers -->
|
26
|
<dependency>
|
27
|
<groupId>org.springframework.boot</groupId>
|
28
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
29
|
</dependency>
|
30
|
|
31
|
<dependency>
|
32
|
<groupId>org.exist-db</groupId>
|
33
|
<artifactId>exist-core</artifactId>
|
34
|
<version>3.0.RC1</version>
|
35
|
<exclusions>
|
36
|
<exclusion>
|
37
|
<groupId>asm</groupId>
|
38
|
<artifactId>asm</artifactId>
|
39
|
</exclusion>
|
40
|
<exclusion>
|
41
|
<groupId>antlr</groupId>
|
42
|
<artifactId>antlr</artifactId>
|
43
|
</exclusion>
|
44
|
<exclusion>
|
45
|
<groupId>org.eclipse.jetty</groupId>
|
46
|
<artifactId>jetty-security</artifactId>
|
47
|
</exclusion>
|
48
|
<exclusion>
|
49
|
<groupId>org.eclipse.jetty</groupId>
|
50
|
<artifactId>jetty-server</artifactId>
|
51
|
</exclusion>
|
52
|
<exclusion>
|
53
|
<groupId>org.eclipse.jetty</groupId>
|
54
|
<artifactId>jetty-util</artifactId>
|
55
|
</exclusion>
|
56
|
<exclusion>
|
57
|
<artifactId>javax.servlet</artifactId>
|
58
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
59
|
</exclusion>
|
60
|
<exclusion>
|
61
|
<groupId>net.sf.saxon</groupId>
|
62
|
<artifactId>Saxon-HE</artifactId>
|
63
|
</exclusion>
|
64
|
<exclusion>
|
65
|
<groupId>org.apache.logging.log4j</groupId>
|
66
|
<artifactId>log4j-slf4j-impl</artifactId>
|
67
|
</exclusion>
|
68
|
<exclusion>
|
69
|
<groupId>org.slf4j</groupId>
|
70
|
<artifactId>slf4j-api</artifactId>
|
71
|
</exclusion>
|
72
|
<exclusion>
|
73
|
<groupId>commons-logging</groupId>
|
74
|
<artifactId>commons-logging</artifactId>
|
75
|
</exclusion>
|
76
|
</exclusions>
|
77
|
</dependency>
|
78
|
|
79
|
<dependency>
|
80
|
<artifactId>exist-start</artifactId>
|
81
|
<groupId>org.exist-db</groupId>
|
82
|
<version>3.0.RC1</version>
|
83
|
</dependency>
|
84
|
|
85
|
</dependencies>
|
86
|
|
87
|
<repositories>
|
88
|
<repository>
|
89
|
<id>exist</id>
|
90
|
<url>https://raw.github.com/eXist-db/mvn-repo/master/</url>
|
91
|
</repository>
|
92
|
</repositories>
|
93
|
|
94
|
</project>
|