Project

General

Profile

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
		<dependency>
26
			<groupId>org.exist-db</groupId>
27
			<artifactId>exist-core</artifactId>
28
			<version>3.0.RC1</version>
29
			<exclusions>
30
				<exclusion>
31
					<groupId>asm</groupId>
32
					<artifactId>asm</artifactId>
33
				</exclusion>
34
				<exclusion>
35
					<groupId>antlr</groupId>
36
					<artifactId>antlr</artifactId>
37
				</exclusion>
38
				<exclusion>
39
					<groupId>org.eclipse.jetty</groupId>
40
					<artifactId>jetty-security</artifactId>
41
				</exclusion>
42
				<exclusion>
43
					<groupId>org.eclipse.jetty</groupId>
44
					<artifactId>jetty-server</artifactId>
45
				</exclusion>
46
				<exclusion>
47
					<groupId>org.eclipse.jetty</groupId>
48
					<artifactId>jetty-util</artifactId>
49
				</exclusion>
50
				<exclusion>
51
					<artifactId>javax.servlet</artifactId>
52
					<groupId>org.eclipse.jetty.orbit</groupId>
53
				</exclusion>
54
				<exclusion>
55
					<groupId>net.sf.saxon</groupId>
56
					<artifactId>Saxon-HE</artifactId>
57
				</exclusion>
58
				<exclusion>
59
					<groupId>org.apache.logging.log4j</groupId>
60
					<artifactId>log4j-slf4j-impl</artifactId>
61
				</exclusion>
62
				<exclusion>
63
					<groupId>org.slf4j</groupId>
64
					<artifactId>slf4j-api</artifactId>
65
				</exclusion>
66
				<exclusion>
67
					<groupId>commons-logging</groupId>
68
					<artifactId>commons-logging</artifactId>
69
				</exclusion>
70
			</exclusions>
71
		</dependency>
72

    
73
		<dependency>
74
			<artifactId>exist-start</artifactId>
75
			<groupId>org.exist-db</groupId>
76
			<version>3.0.RC1</version>
77
		</dependency>
78

    
79
	</dependencies>
80

    
81
	<repositories>
82
		<repository>
83
			<id>exist</id>
84
			<url>https://raw.github.com/eXist-db/mvn-repo/master/</url>
85
		</repository>
86
	</repositories>
87

    
88
</project>
(3-3/3)