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-orcid-service</artifactId>
8
	<version>1.0.0-SNAPSHOT</version>
9
	<packaging>war</packaging>
10

    
11
	<name>uoa-orcid-service</name>
12

    
13
	<parent>
14
		<groupId>org.springframework.boot</groupId>
15
		<artifactId>spring-boot-starter-parent</artifactId>
16
		<version>1.5.11.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>org.springframework.boot</groupId>
55
            <artifactId>spring-boot-starter-security</artifactId>
56
        </dependency>
57

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

    
79
        <dependency>
80
            <groupId>eu.dnetlib</groupId>
81
            <artifactId>uoa-authorization-library</artifactId>
82
            <version>1.0.0-SNAPSHOT</version>
83
        </dependency>
84

    
85
<!--        <dependency>-->
86
<!--            <groupId>org.apache.httpcomponents</groupId>-->
87
<!--            <artifactId>httpclient</artifactId>-->
88
<!--        </dependency>-->
89
    </dependencies>
90

    
91
	<build>
92
		<plugins>
93
			<plugin>
94
				<groupId>org.springframework.boot</groupId>
95
				<artifactId>spring-boot-maven-plugin</artifactId>
96
			</plugin>
97
			<!--3d answer: https://stackoverflow.com/questions/23260057/the-forked-vm-terminated-without-saying-properly-goodbye-vm-crash-or-system-exi-->
98
			<!--If you use openjdk there might be a problem with surfire plugin - uncomment following lines-->
99
			<!--<plugin>-->
100
				<!--<groupId>org.apache.maven.plugins</groupId>-->
101
				<!--<artifactId>maven-surefire-plugin</artifactId>-->
102
				<!--<version>2.19.1</version>-->
103
				<!--<configuration>-->
104
					<!--&lt;!&ndash;<testFailureIgnore>true</testFailureIgnore>&ndash;&gt;-->
105
					<!--<useSystemClassLoader>false</useSystemClassLoader>-->
106
				<!--</configuration>-->
107
			<!--</plugin>-->
108
		</plugins>
109
        <finalName>uoa-orcid-service</finalName>
110
	</build>
111

    
112

    
113
</project>
(1-1/2)