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
        <timestampAdminToolsLibrary>${maven.build.timestamp}</timestampAdminToolsLibrary>
26
        <maven.build.timestamp.format>E MMM dd HH:mm:ss z yyyy</maven.build.timestamp.format>
27
    </properties>
28

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

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

    
56
        <dependency>
57
            <groupId>org.springframework.boot</groupId>
58
            <artifactId>spring-boot-starter-security</artifactId>
59
        </dependency>
60

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

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

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

    
116

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