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

    
6
	<groupId>eu.dnetlib</groupId>
7
	<artifactId>uoa-admin-tools</artifactId>
8
	<version>1.1.1-SNAPSHOT</version>
9
	<packaging>war</packaging>
10

    
11
	<name>uoa-admin-tools</name>
12

    
13
	<parent>
14
		<groupId>org.springframework.boot</groupId>
15
		<artifactId>spring-boot-starter-parent</artifactId>
16
		<version>1.5.8.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
		<dependency>
28
			<groupId>org.springframework.boot</groupId>
29
			<artifactId>spring-boot-starter-data-mongodb</artifactId>
30
		</dependency>
31
		<dependency>
32
			<groupId>org.springframework.boot</groupId>
33
			<artifactId>spring-boot-starter-web</artifactId>
34
			<exclusions>
35
				<exclusion>
36
					<groupId> org.springframework.boot</groupId>
37
					<artifactId>spring-boot-starter-logging</artifactId>
38
				</exclusion>
39
			</exclusions>
40
		</dependency>
41

    
42
		<dependency>
43
			<groupId>org.springframework.boot</groupId>
44
			<artifactId>spring-boot-starter-tomcat</artifactId>
45
			<scope>provided</scope>
46
		</dependency>
47
		<dependency>
48
			<groupId>org.springframework.boot</groupId>
49
			<artifactId>spring-boot-starter-test</artifactId>
50
			<scope>test</scope>
51
		</dependency>
52

    
53
		<dependency>
54
			<groupId>log4j</groupId>
55
			<artifactId>log4j</artifactId>
56
			<version>1.2.17</version>
57
		</dependency>
58
		<dependency>
59
			<groupId>com.google.code.gson</groupId>
60
			<artifactId>gson</artifactId>
61
			<version>2.8.2</version>
62
		</dependency>
63
        <dependency>
64
            <groupId>javax.mail</groupId>
65
            <artifactId>mail</artifactId>
66
            <version>1.5.0-b01</version>
67
        </dependency>
68
        <dependency>
69
            <groupId>commons-io</groupId>
70
            <artifactId>commons-io</artifactId>
71
            <version>20030203.000550</version>
72
        </dependency>
73
    </dependencies>
74

    
75
	<build>
76
		<plugins>
77
			<plugin>
78
				<groupId>org.springframework.boot</groupId>
79
				<artifactId>spring-boot-maven-plugin</artifactId>
80
			</plugin>
81
			<!--3d answer: https://stackoverflow.com/questions/23260057/the-forked-vm-terminated-without-saying-properly-goodbye-vm-crash-or-system-exi-->
82
			<!--If you use openjdk there might be a problem with surfire plugin - uncomment following lines-->
83
			<!--<plugin>-->
84
				<!--<groupId>org.apache.maven.plugins</groupId>-->
85
				<!--<artifactId>maven-surefire-plugin</artifactId>-->
86
				<!--<version>2.19.1</version>-->
87
				<!--<configuration>-->
88
					<!--&lt;!&ndash;<testFailureIgnore>true</testFailureIgnore>&ndash;&gt;-->
89
					<!--<useSystemClassLoader>false</useSystemClassLoader>-->
90
				<!--</configuration>-->
91
			<!--</plugin>-->
92
		</plugins>
93
        <finalName>uoa-admin-tools</finalName>
94
	</build>
95

    
96

    
97
</project>
(3-3/4)