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

    
21
    <dependencies>
22

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

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

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

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

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

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

    
63
        <!--
64
        <dependency>
65
            <groupId>org.postgresql</groupId>
66
            <artifactId>postgresql</artifactId>
67
            <scope>runtime</scope>
68
        </dependency>
69
        -->
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
        <dependency>
85
            <groupId>commons-dbutils</groupId>
86
            <artifactId>commons-dbutils</artifactId>
87
            <version>1.6</version>
88
        </dependency>
89

    
90
    </dependencies>
91

    
92
    <properties>
93
        <java.version>1.8</java.version>
94
        <tomcat.version>7.0.52</tomcat.version>
95
    </properties>
96

    
97

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

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

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