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>3.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.5.15.RELEASE</version>
14
    </parent>
15

    
16
    <dependencies>
17

    
18
        <dependency>
19
            <groupId>eu.dnetlib</groupId>
20
            <artifactId>dnet-openaire-usage-stats-sushilite</artifactId>
21
            <version>1.0.0-SNAPSHOT</version>
22
        </dependency>
23

    
24
        <dependency>
25
            <groupId>org.springframework.boot</groupId>
26
            <artifactId>spring-boot-starter-web</artifactId>
27
            <exclusions>
28
                <exclusion>
29
                    <groupId>org.springframework.boot</groupId>
30
                    <artifactId>spring-boot-starter-logging</artifactId>
31
                </exclusion>
32
            </exclusions>
33
        </dependency>
34

    
35
        <dependency>
36
            <groupId>org.springframework.boot</groupId>
37
            <artifactId>spring-boot-starter-data-jpa</artifactId>
38
        </dependency>
39

    
40
        <dependency>
41
            <groupId>org.springframework.boot</groupId>
42
            <artifactId>spring-boot-starter-data-redis</artifactId>
43
        </dependency>
44

    
45
        <dependency>
46
            <groupId>org.springframework.boot</groupId>
47
            <artifactId>spring-boot-starter-test</artifactId>
48
            <scope>test</scope>
49
        </dependency>
50

    
51
        <!--
52
        <dependency>
53
            <groupId>org.springframework.boot</groupId>
54
            <artifactId>spring-boot-starter-log4j2</artifactId>
55
        </dependency>
56
        -->
57

    
58
        <dependency>
59
            <groupId>log4j</groupId>
60
            <artifactId>log4j</artifactId>
61
            <version>1.2.17</version>
62
        </dependency>
63

    
64
        <dependency>
65
            <groupId>org.postgresql</groupId>
66
            <artifactId>postgresql</artifactId>
67
            <scope>runtime</scope>
68
        </dependency>
69

    
70
        <dependency>
71
            <groupId>junit</groupId>
72
            <artifactId>junit</artifactId>
73
            <scope>test</scope>
74
        </dependency>
75

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

    
82
        <dependency>
83
            <groupId>commons-dbutils</groupId>
84
            <artifactId>commons-dbutils</artifactId>
85
            <version>1.7</version>
86
        </dependency>
87

    
88
    </dependencies>
89

    
90
    <properties>
91
        <java.version>1.8</java.version>
92
        <tomcat.version>7.0.52</tomcat.version>
93
    </properties>
94

    
95

    
96
    <build>
97
        <plugins>
98
            <plugin>
99
                <groupId>org.springframework.boot</groupId>
100
                <artifactId>spring-boot-maven-plugin</artifactId>
101
            </plugin>
102
            <plugin>
103
                <artifactId>maven-war-plugin</artifactId>
104
                <configuration>
105
                    <failOnMissingWebXml>false</failOnMissingWebXml>
106
                </configuration>
107
            </plugin>
108
        </plugins>
109
        <finalName>usagestats</finalName>
110
    </build>
111

    
112
    <repositories>
113
        <repository>
114
            <id>spring-releases</id>
115
            <url>https://repo.spring.io/libs-release</url>
116
        </repository>
117
    </repositories>
118

    
119
    <pluginRepositories>
120
        <pluginRepository>
121
            <id>spring-releases</id>
122
            <url>https://repo.spring.io/libs-release</url>
123
        </pluginRepository>
124
    </pluginRepositories>
125
</project>
    (1-1/1)