Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
    <modelVersion>4.0.0</modelVersion>
6

    
7
    <groupId>eu.dnetlib</groupId>
8
    <artifactId>uoa-admin-tools-library</artifactId>
9
    <version>1.0.0-SNAPSHOT</version>
10
    <packaging>jar</packaging>
11

    
12
    <name>uoa-admin-tools-library</name>
13

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

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

    
27
    <dependencies>
28
        <dependency>
29
            <groupId>org.springframework.boot</groupId>
30
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
31
        </dependency>
32
        <dependency>
33
            <groupId>org.springframework.boot</groupId>
34
            <artifactId>spring-boot-starter-web</artifactId>
35
            <exclusions>
36
                <exclusion>
37
                    <groupId> org.springframework.boot</groupId>
38
                    <artifactId>spring-boot-starter-logging</artifactId>
39
                </exclusion>
40
            </exclusions>
41
        </dependency>
42

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

    
54
<!--        <dependency>-->
55
<!--            <groupId>org.springframework.boot</groupId>-->
56
<!--            <artifactId>spring-boot-starter-security</artifactId>-->
57
<!--        </dependency>-->
58

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

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

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

    
108

    
109
</project>
    (1-1/1)