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.5.2.RELEASE</version>
19
    </parent>
20

    
21
    <dependencies>
22

    
23
        <dependency>
24
            <groupId>org.springframework.boot</groupId>
25
            <artifactId>spring-boot-starter-web</artifactId>
26
        </dependency>
27

    
28
        <dependency>
29
            <groupId>org.springframework.boot</groupId>
30
            <artifactId>spring-boot-starter-data-jpa</artifactId>
31
        </dependency>
32

    
33
        <dependency>
34
            <groupId>org.springframework.boot</groupId>
35
            <artifactId>spring-boot-starter-data-redis</artifactId>
36
        </dependency>
37

    
38
        <dependency>
39
            <groupId>org.springframework.boot</groupId>
40
            <artifactId>spring-boot-starter-test</artifactId>
41
            <scope>test</scope>
42
        </dependency>
43

    
44

    
45
        <dependency>
46
            <groupId>log4j</groupId>
47
            <artifactId>log4j</artifactId>
48
            <version>1.2.17</version>
49
        </dependency>
50

    
51
        <dependency>
52
            <groupId>org.postgresql</groupId>
53
            <artifactId>postgresql</artifactId>
54
            <scope>runtime</scope>
55
        </dependency>
56

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

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

    
70
        <dependency>
71
            <groupId>commons-dbutils</groupId>
72
            <artifactId>commons-dbutils</artifactId>
73
            <version>1.6</version>
74
        </dependency>
75

    
76
    </dependencies>
77

    
78
    <properties>
79
        <java.version>1.7</java.version>
80
    </properties>
81

    
82

    
83
    <build>
84
        <plugins>
85
            <plugin>
86
                <groupId>org.springframework.boot</groupId>
87
                <artifactId>spring-boot-maven-plugin</artifactId>
88
            </plugin>
89
            <plugin>
90
                <artifactId>maven-war-plugin</artifactId>
91
                <configuration>
92
                    <failOnMissingWebXml>false</failOnMissingWebXml>
93
                </configuration>
94
            </plugin>
95
        </plugins>
96
        <finalName>usagestats</finalName>
97
    </build>
98

    
99
    <repositories>
100
        <repository>
101
            <id>spring-releases</id>
102
            <url>https://repo.spring.io/libs-release</url>
103
        </repository>
104
    </repositories>
105

    
106
    <pluginRepositories>
107
        <pluginRepository>
108
            <id>spring-releases</id>
109
            <url>https://repo.spring.io/libs-release</url>
110
        </pluginRepository>
111
    </pluginRepositories>
112
</project>
    (1-1/1)