1 |
41953
|
eri.katsar
|
<?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 |
52841
|
tsampikos.
|
<version>3.0.0-SNAPSHOT</version>
|
9 |
42661
|
eri.katsar
|
<packaging>war</packaging>
|
10 |
41953
|
eri.katsar
|
<parent>
|
11 |
|
|
<groupId>org.springframework.boot</groupId>
|
12 |
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
13 |
52841
|
tsampikos.
|
<version>1.5.15.RELEASE</version>
|
14 |
41953
|
eri.katsar
|
</parent>
|
15 |
|
|
|
16 |
|
|
<dependencies>
|
17 |
41955
|
eri.katsar
|
|
18 |
42661
|
eri.katsar
|
<dependency>
|
19 |
52841
|
tsampikos.
|
<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 |
41953
|
eri.katsar
|
<groupId>org.springframework.boot</groupId>
|
26 |
41955
|
eri.katsar
|
<artifactId>spring-boot-starter-web</artifactId>
|
27 |
47171
|
tsampikos.
|
<exclusions>
|
28 |
|
|
<exclusion>
|
29 |
|
|
<groupId>org.springframework.boot</groupId>
|
30 |
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
31 |
|
|
</exclusion>
|
32 |
|
|
</exclusions>
|
33 |
41955
|
eri.katsar
|
</dependency>
|
34 |
47102
|
tsampikos.
|
|
35 |
41955
|
eri.katsar
|
<dependency>
|
36 |
|
|
<groupId>org.springframework.boot</groupId>
|
37 |
47102
|
tsampikos.
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
38 |
42661
|
eri.katsar
|
</dependency>
|
39 |
41955
|
eri.katsar
|
|
40 |
46364
|
tsampikos.
|
<dependency>
|
41 |
47102
|
tsampikos.
|
<groupId>org.springframework.boot</groupId>
|
42 |
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
43 |
|
|
</dependency>
|
44 |
41955
|
eri.katsar
|
|
45 |
|
|
<dependency>
|
46 |
|
|
<groupId>org.springframework.boot</groupId>
|
47 |
41953
|
eri.katsar
|
<artifactId>spring-boot-starter-test</artifactId>
|
48 |
|
|
<scope>test</scope>
|
49 |
|
|
</dependency>
|
50 |
|
|
|
51 |
52841
|
tsampikos.
|
<!--
|
52 |
41953
|
eri.katsar
|
<dependency>
|
53 |
47194
|
tsampikos.
|
<groupId>org.springframework.boot</groupId>
|
54 |
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
55 |
|
|
</dependency>
|
56 |
52841
|
tsampikos.
|
-->
|
57 |
47194
|
tsampikos.
|
|
58 |
|
|
<dependency>
|
59 |
47133
|
tsampikos.
|
<groupId>log4j</groupId>
|
60 |
|
|
<artifactId>log4j</artifactId>
|
61 |
47102
|
tsampikos.
|
<version>1.2.17</version>
|
62 |
47133
|
tsampikos.
|
</dependency>
|
63 |
41953
|
eri.katsar
|
|
64 |
|
|
<dependency>
|
65 |
47102
|
tsampikos.
|
<groupId>org.postgresql</groupId>
|
66 |
41953
|
eri.katsar
|
<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 |
47133
|
tsampikos.
|
<dependency>
|
83 |
|
|
<groupId>commons-dbutils</groupId>
|
84 |
|
|
<artifactId>commons-dbutils</artifactId>
|
85 |
52841
|
tsampikos.
|
<version>1.7</version>
|
86 |
47133
|
tsampikos.
|
</dependency>
|
87 |
|
|
|
88 |
41953
|
eri.katsar
|
</dependencies>
|
89 |
|
|
|
90 |
|
|
<properties>
|
91 |
48236
|
tsampikos.
|
<java.version>1.8</java.version>
|
92 |
47190
|
tsampikos.
|
<tomcat.version>7.0.52</tomcat.version>
|
93 |
41953
|
eri.katsar
|
</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 |
46038
|
tsampikos.
|
<plugin>
|
103 |
|
|
<artifactId>maven-war-plugin</artifactId>
|
104 |
|
|
<configuration>
|
105 |
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
106 |
|
|
</configuration>
|
107 |
|
|
</plugin>
|
108 |
41953
|
eri.katsar
|
</plugins>
|
109 |
47102
|
tsampikos.
|
<finalName>usagestats</finalName>
|
110 |
41953
|
eri.katsar
|
</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 |
42631
|
eri.katsar
|
|
119 |
41953
|
eri.katsar
|
<pluginRepositories>
|
120 |
|
|
<pluginRepository>
|
121 |
|
|
<id>spring-releases</id>
|
122 |
|
|
<url>https://repo.spring.io/libs-release</url>
|
123 |
|
|
</pluginRepository>
|
124 |
|
|
</pluginRepositories>
|
125 |
42660
|
eri.katsar
|
</project>
|