1 |
41894
|
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 |
|
|
<version>0.0.1-SNAPSHOT</version>
|
9 |
|
|
|
10 |
|
|
<parent>
|
11 |
|
|
<groupId>org.springframework.boot</groupId>
|
12 |
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
13 |
|
|
<version>1.3.2.RELEASE</version>
|
14 |
|
|
</parent>
|
15 |
|
|
|
16 |
|
|
<dependencies>
|
17 |
|
|
<dependency>
|
18 |
|
|
<groupId>org.springframework.boot</groupId>
|
19 |
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
20 |
|
|
<scope>test</scope>
|
21 |
|
|
</dependency>
|
22 |
|
|
|
23 |
|
|
<dependency>
|
24 |
|
|
<groupId>org.springframework.boot</groupId>
|
25 |
|
|
<artifactId>spring-boot-starter-data-rest</artifactId>
|
26 |
|
|
</dependency>
|
27 |
|
|
<dependency>
|
28 |
|
|
<groupId>org.springframework.boot</groupId>
|
29 |
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
30 |
|
|
</dependency>
|
31 |
|
|
|
32 |
|
|
<dependency>
|
33 |
|
|
<groupId>postgresql</groupId>
|
34 |
|
|
<artifactId>postgresql</artifactId>
|
35 |
|
|
<version>9.1-901-1.jdbc4</version>
|
36 |
|
|
<scope>runtime</scope>
|
37 |
|
|
</dependency>
|
38 |
|
|
|
39 |
|
|
<dependency>
|
40 |
|
|
<groupId>junit</groupId>
|
41 |
|
|
<artifactId>junit</artifactId>
|
42 |
|
|
<version>3.8.1</version>
|
43 |
|
|
<scope>test</scope>
|
44 |
|
|
</dependency>
|
45 |
|
|
|
46 |
|
|
<dependency>
|
47 |
|
|
<groupId>com.googlecode.json-simple</groupId>
|
48 |
|
|
<artifactId>json-simple</artifactId>
|
49 |
|
|
<version>1.1.1</version>
|
50 |
|
|
</dependency>
|
51 |
|
|
|
52 |
|
|
</dependencies>
|
53 |
|
|
|
54 |
|
|
<properties>
|
55 |
|
|
<java.version>1.7</java.version>
|
56 |
|
|
</properties>
|
57 |
|
|
|
58 |
|
|
|
59 |
|
|
<build>
|
60 |
|
|
<plugins>
|
61 |
|
|
<plugin>
|
62 |
|
|
<groupId>org.springframework.boot</groupId>
|
63 |
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
64 |
|
|
</plugin>
|
65 |
|
|
</plugins>
|
66 |
|
|
</build>
|
67 |
|
|
|
68 |
|
|
<repositories>
|
69 |
|
|
<repository>
|
70 |
|
|
<id>spring-releases</id>
|
71 |
|
|
<url>https://repo.spring.io/libs-release</url>
|
72 |
|
|
</repository>
|
73 |
|
|
</repositories>
|
74 |
|
|
<pluginRepositories>
|
75 |
|
|
<pluginRepository>
|
76 |
|
|
<id>spring-releases</id>
|
77 |
|
|
<url>https://repo.spring.io/libs-release</url>
|
78 |
|
|
</pluginRepository>
|
79 |
|
|
</pluginRepositories>
|
80 |
|
|
</project>
|