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
    <groupId>eu.dnetlib</groupId>
7
    <artifactId>dnet-openaire-usage-stats-api</artifactId>
8
    <version>1.0.0-SNAPSHOT</version>
9
    <packaging>war</packaging>
10
    <parent>
11
<!--
12
        <groupId>eu.dnetlib</groupId>
13
        <artifactId>dnet-parent</artifactId>
14
        <version>1.0.0</version>
15
-->
16
        <groupId>org.springframework.boot</groupId>
17
        <artifactId>spring-boot-starter-parent</artifactId>
18
        <version>1.3.2.RELEASE</version>
19
    </parent>
20

    
21
    <dependencies>
22

    
23
        <!--FOR WAR DEPLOYMENT-->
24

    
25
        <dependency>
26
            <groupId>org.springframework.boot</groupId>
27
            <artifactId>spring-boot-starter-web</artifactId>
28
            <version>1.3.2.RELEASE</version>
29
        </dependency>
30
        <dependency>
31
            <groupId>org.springframework.boot</groupId>
32
            <artifactId>spring-boot-starter-tomcat</artifactId>
33
            <scope>provided</scope>
34
            <version>1.3.2.RELEASE</version>
35
        </dependency>
36

    
37
        <!--
38
                END OF WAR DEPLOYMENT DEPENDENCIES
39
        -->
40
        <dependency>
41
			<groupId>log4j</groupId>
42
			<artifactId>log4j</artifactId>
43
			<version>${log4j.version}</version>
44
		</dependency>
45

    
46
        <dependency>
47
            <groupId>org.springframework.boot</groupId>
48
            <artifactId>spring-boot-starter-test</artifactId>
49
            <scope>test</scope>
50
            <version>1.3.2.RELEASE</version>
51
        </dependency>
52

    
53
        <dependency>
54
            <groupId>org.springframework.boot</groupId>
55
            <artifactId>spring-boot-starter-data-rest</artifactId>
56
            <version>1.3.2.RELEASE</version>
57
        </dependency>
58
        <dependency>
59
            <groupId>org.springframework.boot</groupId>
60
            <artifactId>spring-boot-starter-data-jpa</artifactId>
61
            <version>1.3.2.RELEASE</version>
62
        </dependency>
63

    
64
        <dependency>
65
            <groupId>postgresql</groupId>
66
            <artifactId>postgresql</artifactId>
67
            <version>9.1-901-1.jdbc4</version>
68
            <scope>runtime</scope>
69
        </dependency>
70

    
71
        <dependency>
72
            <groupId>junit</groupId>
73
            <artifactId>junit</artifactId>
74
            <version>3.8.1</version>
75
            <scope>test</scope>
76
        </dependency>
77

    
78
        <dependency>
79
            <groupId>com.googlecode.json-simple</groupId>
80
            <artifactId>json-simple</artifactId>
81
            <version>1.1.1</version>
82
        </dependency>
83

    
84
    </dependencies>
85

    
86
    <properties>
87
        <java.version>1.7</java.version>
88
    </properties>
89

    
90

    
91
    <build>
92
        <plugins>
93
            <plugin>
94
                <groupId>org.springframework.boot</groupId>
95
                <artifactId>spring-boot-maven-plugin</artifactId>
96
                <version>1.3.2.RELEASE</version>
97
            </plugin>
98
            <plugin>
99
                <artifactId>maven-war-plugin</artifactId>
100
                <configuration>
101
                    <failOnMissingWebXml>false</failOnMissingWebXml>
102
                </configuration>
103
            </plugin>
104
        </plugins>
105
        <finalName>stats</finalName>
106
    </build>
107

    
108
    <repositories>
109
        <repository>
110
            <id>spring-releases</id>
111
            <url>https://repo.spring.io/libs-release</url>
112
        </repository>
113
    </repositories>
114

    
115
    <pluginRepositories>
116
        <pluginRepository>
117
            <id>spring-releases</id>
118
            <url>https://repo.spring.io/libs-release</url>
119
        </pluginRepository>
120
    </pluginRepositories>
121
</project>
    (1-1/1)