1 |
46537
|
alessia.ba
|
<?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 |
|
|
|
7 |
|
|
<groupId>eu.dnetlib</groupId>
|
8 |
|
|
<artifactId>dnet-openaire-projects-exporter</artifactId>
|
9 |
|
|
<version>0.0.1-SNAPSHOT</version>
|
10 |
|
|
|
11 |
|
|
<!-- Inherit defaults from Spring Boot -->
|
12 |
|
|
<parent>
|
13 |
|
|
<groupId>org.springframework.boot</groupId>
|
14 |
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
15 |
|
|
<version>1.5.2.RELEASE</version>
|
16 |
|
|
</parent>
|
17 |
|
|
|
18 |
|
|
<!-- Add typical dependencies for a web application -->
|
19 |
|
|
<dependencies>
|
20 |
|
|
<dependency>
|
21 |
|
|
<groupId>org.springframework.boot</groupId>
|
22 |
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
23 |
|
|
</dependency>
|
24 |
|
|
|
25 |
|
|
<dependency>
|
26 |
|
|
<groupId>org.springframework.boot</groupId>
|
27 |
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
28 |
|
|
</dependency>
|
29 |
|
|
<dependency>
|
30 |
|
|
<groupId>org.postgresql</groupId>
|
31 |
|
|
<artifactId>postgresql</artifactId>
|
32 |
|
|
<version>42.0.0</version>
|
33 |
|
|
</dependency>
|
34 |
|
|
<dependency>
|
35 |
|
|
<groupId>org.apache.commons</groupId>
|
36 |
|
|
<artifactId>commons-dbcp2</artifactId>
|
37 |
|
|
<version>2.1</version>
|
38 |
|
|
</dependency>
|
39 |
|
|
<!-- TODO: migrate to stringtemplate4 -->
|
40 |
|
|
<!--<dependency>-->
|
41 |
|
|
<!--<groupId>org.antlr</groupId>-->
|
42 |
|
|
<!--<artifactId>stringtemplate</artifactId>-->
|
43 |
|
|
<!--<version>4.0.2</version>-->
|
44 |
|
|
<!--</dependency>-->
|
45 |
|
|
<dependency>
|
46 |
|
|
<groupId>org.antlr</groupId>
|
47 |
|
|
<artifactId>stringtemplate</artifactId>
|
48 |
|
|
<version>3.2.1</version>
|
49 |
|
|
</dependency>
|
50 |
|
|
<dependency>
|
51 |
|
|
<groupId>org.apache.commons</groupId>
|
52 |
|
|
<artifactId>commons-lang3</artifactId>
|
53 |
|
|
<version>3.5</version>
|
54 |
|
|
</dependency>
|
55 |
|
|
<dependency>
|
56 |
|
|
<groupId>commons-io</groupId>
|
57 |
|
|
<artifactId>commons-io</artifactId>
|
58 |
|
|
<version>2.5</version>
|
59 |
|
|
</dependency>
|
60 |
|
|
|
61 |
|
|
<dependency>
|
62 |
|
|
<groupId>com.google.guava</groupId>
|
63 |
|
|
<artifactId>guava</artifactId>
|
64 |
|
|
<version>21.0</version>
|
65 |
|
|
</dependency>
|
66 |
|
|
<dependency>
|
67 |
|
|
<groupId>net.sf.supercsv</groupId>
|
68 |
|
|
<artifactId>super-csv</artifactId>
|
69 |
|
|
<version>2.4.0</version>
|
70 |
|
|
</dependency>
|
71 |
|
|
<dependency>
|
72 |
|
|
<groupId>com.google.code.gson</groupId>
|
73 |
|
|
<artifactId>gson</artifactId>
|
74 |
|
|
<version>2.8.0</version>
|
75 |
|
|
</dependency>
|
76 |
|
|
|
77 |
|
|
|
78 |
|
|
<dependency>
|
79 |
|
|
<groupId>org.springframework.boot</groupId>
|
80 |
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
81 |
|
|
<scope>test</scope>
|
82 |
|
|
</dependency>
|
83 |
|
|
|
84 |
|
|
</dependencies>
|
85 |
|
|
|
86 |
|
|
<!-- Package as an executable jar -->
|
87 |
|
|
<build>
|
88 |
|
|
<plugins>
|
89 |
|
|
<plugin>
|
90 |
|
|
<groupId>org.springframework.boot</groupId>
|
91 |
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
92 |
|
|
</plugin>
|
93 |
|
|
</plugins>
|
94 |
|
|
</build>
|
95 |
|
|
|
96 |
|
|
<properties>
|
97 |
|
|
<java.version>1.8</java.version>
|
98 |
|
|
<org.springframework.boot.logging.LoggingSystem></org.springframework.boot.logging.LoggingSystem>
|
99 |
|
|
</properties>
|
100 |
|
|
</project>
|