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
        <groupId>org.springframework.boot</groupId>
12
        <artifactId>spring-boot-starter-parent</artifactId>
13
        <version>1.3.2.RELEASE</version>
14
    </parent>
15

    
16
    <dependencies>
17

    
18
        <!--FOR WAR DEPLOYMENT-->
19

    
20
        <dependency>
21
            <groupId>org.springframework.boot</groupId>
22
            <artifactId>spring-boot-starter-web</artifactId>
23
        </dependency>
24
        <dependency>
25
            <groupId>org.springframework.boot</groupId>
26
            <artifactId>spring-boot-starter-tomcat</artifactId>
27
            <scope>provided</scope>
28
        </dependency>
29

    
30
        <!--
31
                END OF WAR DEPLOYMENT DEPENDENCIES
32
        -->
33

    
34
        <dependency>
35
            <groupId>org.springframework.boot</groupId>
36
            <artifactId>spring-boot-starter-test</artifactId>
37
            <scope>test</scope>
38
        </dependency>
39

    
40
        <dependency>
41
            <groupId>org.springframework.boot</groupId>
42
            <artifactId>spring-boot-starter-data-rest</artifactId>
43
        </dependency>
44
        <dependency>
45
            <groupId>org.springframework.boot</groupId>
46
            <artifactId>spring-boot-starter-data-jpa</artifactId>
47
        </dependency>
48

    
49
        <dependency>
50
            <groupId>postgresql</groupId>
51
            <artifactId>postgresql</artifactId>
52
            <version>9.1-901-1.jdbc4</version>
53
            <scope>runtime</scope>
54
        </dependency>
55

    
56
        <dependency>
57
            <groupId>junit</groupId>
58
            <artifactId>junit</artifactId>
59
            <version>3.8.1</version>
60
            <scope>test</scope>
61
        </dependency>
62

    
63
        <dependency>
64
            <groupId>com.googlecode.json-simple</groupId>
65
            <artifactId>json-simple</artifactId>
66
            <version>1.1.1</version>
67
        </dependency>
68

    
69
    </dependencies>
70

    
71
    <properties>
72
        <java.version>1.7</java.version>
73
    </properties>
74

    
75

    
76
    <build>
77
        <plugins>
78
            <plugin>
79
                <groupId>org.springframework.boot</groupId>
80
                <artifactId>spring-boot-maven-plugin</artifactId>
81
            </plugin>
82
        </plugins>
83

    
84
        <finalName>stats</finalName>
85
    </build>
86

    
87
    <repositories>
88
        <repository>
89
            <id>spring-releases</id>
90
            <url>https://repo.spring.io/libs-release</url>
91
        </repository>
92
    </repositories>
93

    
94
    <pluginRepositories>
95
        <pluginRepository>
96
            <id>spring-releases</id>
97
            <url>https://repo.spring.io/libs-release</url>
98
        </pluginRepository>
99
    </pluginRepositories>
100
</project>
    (1-1/1)