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
	<groupId>eu.dnetlib</groupId>
6
	<artifactId>dnet-is-application</artifactId>
7
	<version>0.0.1-SNAPSHOT</version>
8
	<packaging>jar</packaging>
9

    
10
	<name>dnet-is-application</name>
11
	<description>DNet Information Service Application</description>
12

    
13
	<parent>
14
		<groupId>org.springframework.boot</groupId>
15
		<artifactId>spring-boot-starter-parent</artifactId>
16
		<version>1.4.2.RELEASE</version>
17
		<relativePath /> <!-- lookup parent from repository -->
18
	</parent>
19

    
20
	<properties>
21
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
23
		<java.version>1.8</java.version>
24
	</properties>
25

    
26
	<dependencies>
27

    
28
		<dependency>
29
			<groupId>org.springframework.boot</groupId>
30
			<artifactId>spring-boot-starter-web</artifactId>
31
		</dependency>
32

    
33
		<dependency>
34
			<groupId>org.springframework.boot</groupId>
35
			<artifactId>spring-boot-configuration-processor</artifactId>
36
			<optional>true</optional>
37
		</dependency>
38

    
39
		<dependency>
40
			<groupId>org.springframework.boot</groupId>
41
			<artifactId>spring-boot-starter-test</artifactId>
42
			<scope>test</scope>
43
		</dependency>
44

    
45
		<dependency>
46
			<groupId>eu.dnetlib</groupId>
47
			<artifactId>dnet-common-utils</artifactId>
48
			<version>1.0.0-SNAPSHOT</version>
49
		</dependency>
50

    
51
		<dependency>
52
			<groupId>org.exist-db</groupId>
53
			<artifactId>exist-core</artifactId>
54
			<version>3.0.RC1</version>
55
			<exclusions>
56
				<exclusion>
57
					<groupId>asm</groupId>
58
					<artifactId>asm</artifactId>
59
				</exclusion>
60
				<exclusion>
61
					<groupId>antlr</groupId>
62
					<artifactId>antlr</artifactId>
63
				</exclusion>
64
				<exclusion>
65
					<groupId>org.aspectj</groupId>
66
					<artifactId>aspectjrt</artifactId>
67
				</exclusion>
68
				<exclusion>
69
					<groupId>org.eclipse.jetty</groupId>
70
					<artifactId>jetty-security</artifactId>
71
				</exclusion>
72
				<exclusion>
73
					<groupId>org.eclipse.jetty</groupId>
74
					<artifactId>jetty-server</artifactId>
75
				</exclusion>
76
				<exclusion>
77
					<groupId>org.eclipse.jetty</groupId>
78
					<artifactId>jetty-util</artifactId>
79
				</exclusion>
80
				<exclusion>
81
					<artifactId>javax.servlet</artifactId>
82
					<groupId>org.eclipse.jetty.orbit</groupId>
83
				</exclusion>
84
				<exclusion>
85
					<groupId>net.sf.saxon</groupId>
86
					<artifactId>Saxon-HE</artifactId>
87
				</exclusion>
88
				<exclusion>
89
					<groupId>org.apache.logging.log4j</groupId>
90
					<artifactId>log4j-slf4j-impl</artifactId>
91
				</exclusion>
92
				<exclusion>
93
					<groupId>org.quartz-scheduler</groupId>
94
					<artifactId>quartz</artifactId>
95
				</exclusion>
96
				<exclusion>
97
					<groupId>org.slf4j</groupId>
98
					<artifactId>slf4j-api</artifactId>
99
				</exclusion>
100
				<exclusion>
101
					<groupId>commons-logging</groupId>
102
					<artifactId>commons-logging</artifactId>
103
				</exclusion>
104
				<exclusion>
105
					<groupId>org.apache.logging.log4j</groupId>
106
					<artifactId>log4j-api</artifactId>
107
				</exclusion>
108
			</exclusions>
109
		</dependency>
110

    
111
		<dependency>
112
			<artifactId>exist-start</artifactId>
113
			<groupId>org.exist-db</groupId>
114
			<version>3.0.RC1</version>
115
		</dependency>
116

    
117
		<dependency>
118
			<groupId>junit</groupId>
119
			<artifactId>junit</artifactId>
120
			<scope>test</scope>
121
		</dependency>
122

    
123
	</dependencies>
124

    
125
	<build>
126
		<plugins>
127
			<plugin>
128
				<groupId>org.springframework.boot</groupId>
129
				<artifactId>spring-boot-maven-plugin</artifactId>
130
			</plugin>
131
		</plugins>
132
	</build>
133

    
134
	<repositories>
135
		<repository>
136
			<id>exist</id>
137
			<url>https://raw.github.com/eXist-db/mvn-repo/master/</url>
138
		</repository>
139
	</repositories>
140

    
141
</project>
(4-4/4)