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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
    <modelVersion>4.0.0</modelVersion>
4

    
5
<!--    <groupId>eu.dnetlib</groupId>-->
6
    <artifactId>uoa-admin-tools-library</artifactId>
7
    <version>1.0.2-SNAPSHOT</version>
8
    <packaging>jar</packaging>
9

    
10
    <name>uoa-admin-tools-library</name>
11

    
12
    <parent>
13
        <groupId>eu.dnetlib</groupId>
14
        <artifactId>dnet45-parent</artifactId>
15
        <version>1.0.0</version>
16
    </parent>
17

    
18
    <scm>
19
        <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-admin-tools-library/trunk</developerConnection>
20
    </scm>
21

    
22
    <properties>
23
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
25
        <java.version>1.8</java.version>
26
        <timestampAdminToolsLibrary>${maven.build.timestamp}</timestampAdminToolsLibrary>
27
        <maven.build.timestamp.format>E MMM dd HH:mm:ss z yyyy</maven.build.timestamp.format>
28
    </properties>
29

    
30
    <dependencyManagement>
31
        <dependencies>
32
            <dependency>
33
                <groupId>org.springframework.boot</groupId>
34
                <artifactId>spring-boot-dependencies</artifactId>
35
                <version>1.5.8.RELEASE</version>
36
                <type>pom</type>
37
                <scope>import</scope>
38
            </dependency>
39
        </dependencies>
40
    </dependencyManagement>
41
    <dependencies>
42
        <dependency>
43
            <groupId>org.springframework.boot</groupId>
44
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
45
        </dependency>
46
        <dependency>
47
            <groupId>org.springframework.boot</groupId>
48
            <artifactId>spring-boot-starter-web</artifactId>
49
            <exclusions>
50
                <exclusion>
51
                    <groupId> org.springframework.boot</groupId>
52
                    <artifactId>spring-boot-starter-logging</artifactId>
53
                </exclusion>
54
            </exclusions>
55
        </dependency>
56

    
57
        <dependency>
58
            <groupId>org.springframework.boot</groupId>
59
            <artifactId>spring-boot-starter-tomcat</artifactId>
60
            <scope>provided</scope>
61
        </dependency>
62
        <dependency>
63
            <groupId>org.springframework.boot</groupId>
64
            <artifactId>spring-boot-starter-test</artifactId>
65
            <scope>test</scope>
66
        </dependency>
67

    
68
        <dependency>
69
            <groupId>org.springframework.boot</groupId>
70
            <artifactId>spring-boot-starter-security</artifactId>
71
        </dependency>
72

    
73
        <dependency>
74
            <groupId>log4j</groupId>
75
            <artifactId>log4j</artifactId>
76
            <version>1.2.17</version>
77
        </dependency>
78
        <dependency>
79
            <groupId>com.google.code.gson</groupId>
80
            <artifactId>gson</artifactId>
81
            <version>2.8.2</version>
82
        </dependency>
83
        <dependency>
84
            <groupId>javax.mail</groupId>
85
            <artifactId>mail</artifactId>
86
            <version>1.5.0-b01</version>
87
        </dependency>
88
        <dependency>
89
            <groupId>commons-io</groupId>
90
            <artifactId>commons-io</artifactId>
91
            <version>20030203.000550</version>
92
        </dependency>
93

    
94
        <dependency>
95
            <groupId>eu.dnetlib</groupId>
96
            <artifactId>uoa-authorization-library</artifactId>
97
            <version>1.0.0</version>
98
        </dependency>
99
    </dependencies>
100

    
101
    <build>
102
        <plugins>
103
            <!--			<plugin>-->
104
            <!--				<groupId>org.springframework.boot</groupId>-->
105
            <!--				<artifactId>spring-boot-maven-plugin</artifactId>-->
106
            <!--			</plugin>-->
107
            <!--3d answer: https://stackoverflow.com/questions/23260057/the-forked-vm-terminated-without-saying-properly-goodbye-vm-crash-or-system-exi-->
108
            <!--If you use openjdk there might be a problem with surfire plugin - uncomment following lines-->
109
            <!--<plugin>-->
110
            <!--<groupId>org.apache.maven.plugins</groupId>-->
111
            <!--<artifactId>maven-surefire-plugin</artifactId>-->
112
            <!--<version>2.19.1</version>-->
113
            <!--<configuration>-->
114
            <!--&lt;!&ndash;<testFailureIgnore>true</testFailureIgnore>&ndash;&gt;-->
115
            <!--<useSystemClassLoader>false</useSystemClassLoader>-->
116
            <!--</configuration>-->
117
            <!--</plugin>-->
118
        </plugins>
119
        <finalName>uoa-admin-tools-library</finalName>
120
        <resources>
121
            <resource>
122
                <directory>src/main/resources</directory>
123
                <filtering>true</filtering>
124
            </resource>
125
        </resources>
126
    </build>
127

    
128

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