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

    
17
    <dependencies>
18

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

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

    
36
        <dependency>
37
            <groupId>org.springframework.boot</groupId>
38
            <artifactId>spring-boot-starter-data-jpa</artifactId>
39
        </dependency>
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
        <!--
53
        <dependency>
54
            <groupId>org.springframework.boot</groupId>
55
            <artifactId>spring-boot-starter-log4j2</artifactId>
56
        </dependency>
57
        -->
58

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

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

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

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

    
83
        <dependency>
84
            <groupId>commons-dbutils</groupId>
85
            <artifactId>commons-dbutils</artifactId>
86
            <version>1.7</version>
87
        </dependency>
88
        <dependency>
89
            <groupId>commons-io</groupId>
90
            <artifactId>commons-io</artifactId>
91
            <version>2.5</version>
92
            <type>jar</type>
93
        </dependency>
94
    </dependencies>
95

    
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
<plugin>
111
    <groupId>org.apache.maven.plugins</groupId>
112
    <artifactId>maven-compiler-plugin</artifactId>
113
    <version>3.1</version>
114
    <configuration>
115
        <source>1.8</source>
116
        <target>1.8</target>
117
    </configuration>
118
</plugin>            
119
        </plugins>
120
        <finalName>usagestats</finalName>
121
    </build>
122

    
123
    <repositories>
124
        <repository>
125
            <id>spring-releases</id>
126
            <url>https://repo.spring.io/libs-release</url>
127
        </repository>
128
    </repositories>
129

    
130
    <pluginRepositories>
131
        <pluginRepository>
132
            <id>spring-releases</id>
133
            <url>https://repo.spring.io/libs-release</url>
134
        </pluginRepository>
135
    </pluginRepositories>
136
</project>
    (1-1/1)