1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3
|
<modelVersion>4.0.0</modelVersion>
|
4
|
|
5
|
<groupId>eu.dnetlib</groupId>
|
6
|
<artifactId>dnet-openaire-usage-stats-sushilite</artifactId>
|
7
|
<version>1.0.0-SNAPSHOT</version>
|
8
|
|
9
|
<properties>
|
10
|
<java.version>1.8</java.version>
|
11
|
<maven.compiler.source>1.8</maven.compiler.source>
|
12
|
<maven.compiler.target>1.8</maven.compiler.target>
|
13
|
</properties>
|
14
|
|
15
|
<scm>
|
16
|
<connection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-openaire-usage-stats-sushilite/trunk/</connection>
|
17
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-openaire-usage-stats-sushilite/trunk/</developerConnection>
|
18
|
<url>https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-openaire-usage-stats-sushilite/trunk/</url>
|
19
|
</scm>
|
20
|
|
21
|
<distributionManagement>
|
22
|
<snapshotRepository>
|
23
|
<id>dnet45-snapshots</id>
|
24
|
<name>DNet45 Snapshots</name>
|
25
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet45-snapshots</url>
|
26
|
<layout>default</layout>
|
27
|
</snapshotRepository>
|
28
|
<repository>
|
29
|
<id>dnet45-releases</id>
|
30
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet45-releases</url>
|
31
|
</repository>
|
32
|
</distributionManagement>
|
33
|
|
34
|
|
35
|
<!--
|
36
|
<parent>
|
37
|
<groupId>org.springframework.boot</groupId>
|
38
|
<artifactId>spring-boot-starter-parent</artifactId>
|
39
|
<version>1.5.9.RELEASE</version>
|
40
|
</parent>
|
41
|
|
42
|
<dependencies>
|
43
|
<dependency>
|
44
|
<groupId>org.springframework.boot</groupId>
|
45
|
<artifactId>spring-boot-starter-web</artifactId>
|
46
|
<exclusions>
|
47
|
<exclusion>
|
48
|
<groupId>org.springframework.boot</groupId>
|
49
|
<artifactId>spring-boot-starter-logging</artifactId>
|
50
|
</exclusion>
|
51
|
</exclusions>
|
52
|
</dependency>
|
53
|
</dependencies>
|
54
|
-->
|
55
|
|
56
|
<dependencies>
|
57
|
<dependency>
|
58
|
<groupId>com.fasterxml.jackson.core</groupId>
|
59
|
<artifactId>jackson-annotations</artifactId>
|
60
|
<version>2.9.6</version>
|
61
|
</dependency>
|
62
|
</dependencies>
|
63
|
|
64
|
</project>
|