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.3.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
|
<dependency>
|
35
|
<groupId>org.springframework.boot</groupId>
|
36
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
37
|
</dependency>
|
38
|
|
39
|
<dependency>
|
40
|
<groupId>org.springframework.boot</groupId>
|
41
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
42
|
</dependency>
|
43
|
|
44
|
<dependency>
|
45
|
<groupId>org.springframework.boot</groupId>
|
46
|
<artifactId>spring-boot-starter-test</artifactId>
|
47
|
<scope>test</scope>
|
48
|
</dependency>
|
49
|
|
50
|
<dependency>
|
51
|
<groupId>org.springframework.boot</groupId>
|
52
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
53
|
</dependency>
|
54
|
|
55
|
<dependency>
|
56
|
<groupId>log4j</groupId>
|
57
|
<artifactId>log4j</artifactId>
|
58
|
<version>1.2.17</version>
|
59
|
</dependency>
|
60
|
|
61
|
<dependency>
|
62
|
<groupId>org.postgresql</groupId>
|
63
|
<artifactId>postgresql</artifactId>
|
64
|
<scope>runtime</scope>
|
65
|
</dependency>
|
66
|
|
67
|
<dependency>
|
68
|
<groupId>junit</groupId>
|
69
|
<artifactId>junit</artifactId>
|
70
|
<version>3.8.1</version>
|
71
|
<scope>test</scope>
|
72
|
</dependency>
|
73
|
|
74
|
<dependency>
|
75
|
<groupId>com.googlecode.json-simple</groupId>
|
76
|
<artifactId>json-simple</artifactId>
|
77
|
<version>1.1.1</version>
|
78
|
</dependency>
|
79
|
|
80
|
<dependency>
|
81
|
<groupId>commons-dbutils</groupId>
|
82
|
<artifactId>commons-dbutils</artifactId>
|
83
|
<version>1.6</version>
|
84
|
</dependency>
|
85
|
|
86
|
</dependencies>
|
87
|
|
88
|
<properties>
|
89
|
<java.version>1.7</java.version>
|
90
|
<tomcat.version>7.0.52</tomcat.version>
|
91
|
</properties>
|
92
|
|
93
|
|
94
|
<build>
|
95
|
<plugins>
|
96
|
<plugin>
|
97
|
<groupId>org.springframework.boot</groupId>
|
98
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
99
|
</plugin>
|
100
|
<plugin>
|
101
|
<artifactId>maven-war-plugin</artifactId>
|
102
|
<configuration>
|
103
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
104
|
</configuration>
|
105
|
</plugin>
|
106
|
</plugins>
|
107
|
<finalName>usagestats</finalName>
|
108
|
</build>
|
109
|
|
110
|
<repositories>
|
111
|
<repository>
|
112
|
<id>spring-releases</id>
|
113
|
<url>https://repo.spring.io/libs-release</url>
|
114
|
</repository>
|
115
|
</repositories>
|
116
|
|
117
|
<pluginRepositories>
|
118
|
<pluginRepository>
|
119
|
<id>spring-releases</id>
|
120
|
<url>https://repo.spring.io/libs-release</url>
|
121
|
</pluginRepository>
|
122
|
</pluginRepositories>
|
123
|
</project>
|