2017-09-14 12:37:36 +02:00
<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">
<modelVersion > 4.0.0</modelVersion>
<groupId > dmp-backend</groupId>
<artifactId > dmp-backend</artifactId>
<version > 0.0.1-SNAPSHOT</version>
2017-12-12 11:14:11 +01:00
2017-12-15 00:01:26 +01:00
<parent >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-parent</artifactId>
<version > 1.5.9.RELEASE</version>
</parent>
2017-09-14 12:37:36 +02:00
<properties >
2017-09-27 18:15:39 +02:00
<project.http.version > 1.19.0</project.http.version>
<project.oauth.version > 1.19.0</project.oauth.version>
2017-09-14 12:37:36 +02:00
<dmp-backend-commons.version > 0.0.1-SNAPSHOT</dmp-backend-commons.version>
<org.springframework.version > 4.3.8.RELEASE</org.springframework.version>
2017-12-15 00:01:26 +01:00
<!-- <org.springframework.eu.eudat.security.version>3.2.10.RELEASE</org.springframework.eu.eudat.security.version> -->
2017-09-27 18:15:39 +02:00
<org.springframework.security.version > 4.2.3.RELEASE</org.springframework.security.version>
2017-09-14 12:37:36 +02:00
<com.sun.jersey.version > 1.19.1</com.sun.jersey.version>
<org.apache.tomcat.tomcat-jdbc.version > 7.0.35</org.apache.tomcat.tomcat-jdbc.version>
2017-12-04 11:20:21 +01:00
<com.fasterxml.jackson > 2.8.4</com.fasterxml.jackson>
2017-10-06 19:20:05 +02:00
<hibernate.version > 5.2.11.Final</hibernate.version>
2017-09-14 12:37:36 +02:00
<commons-codec.version > 1.9</commons-codec.version>
<org.junit.version > 4.11</org.junit.version>
<log4j.version > 1.2.17</log4j.version>
<slf4j.version > 1.7.12</slf4j.version>
<jetty.version > 9.0.7.v20131107</jetty.version> <!-- Adapt this to a version found on http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty - maven - plugin/ -->
<logback.version > 1.1.1</logback.version>
<javax.inject.version > 1</javax.inject.version>
<javax.servlet.servlet-api.version > 3.0.1</javax.servlet.servlet-api.version>
<!-- <jcloverslf4j.version>1.7.6</jcloverslf4j.version> -->
</properties>
<dependencies >
<!-- <dependency> -->
<!-- <groupId>dmp - backend</groupId> -->
<!-- <artifactId>dmp - backend - commons</artifactId> -->
<!-- <version>${dmp - backend - commons.version}</version> -->
<!-- </dependency> -->
2017-12-15 00:01:26 +01:00
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson - core -->
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<!-- https://mvnrepository.com/artifact/com.googlecode.json - simple/json - simple -->
<dependency >
<groupId > org.json</groupId>
<artifactId > json</artifactId>
<version > 20160810</version>
</dependency>
2017-12-15 13:25:21 +01:00
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-devtools</artifactId>
</dependency>
2017-09-14 12:37:36 +02:00
<dependency >
<groupId > org.hibernate</groupId>
<artifactId > hibernate-core</artifactId>
<version > ${hibernate.version}</version>
</dependency>
<dependency >
<groupId > org.hibernate</groupId>
<artifactId > hibernate-c3p0</artifactId>
<version > ${hibernate.version}</version>
</dependency>
2017-12-15 00:01:26 +01:00
<!-- https://mvnrepository.com/artifact/com.google.api - client/google - api - client -->
2017-09-14 12:37:36 +02:00
<dependency >
2017-12-15 00:01:26 +01:00
<groupId > com.google.api-client</groupId>
<artifactId > google-api-client</artifactId>
<version > 1.23.0</version>
2017-09-14 12:37:36 +02:00
</dependency>
2017-12-15 00:01:26 +01:00
<!-- https://mvnrepository.com/artifact/com.jayway.jsonpath/json - path -->
2017-11-21 17:29:16 +01:00
<dependency >
2017-12-15 00:01:26 +01:00
<groupId > com.jayway.jsonpath</groupId>
<artifactId > json-path</artifactId>
<version > 2.4.0</version>
2017-11-21 17:29:16 +01:00
</dependency>
2017-09-14 12:37:36 +02:00
2017-12-15 00:01:26 +01:00
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson - dataformat - xml -->
2017-09-14 12:37:36 +02:00
<dependency >
2017-12-15 00:01:26 +01:00
<groupId > com.fasterxml.jackson.dataformat</groupId>
<artifactId > jackson-dataformat-xml</artifactId>
<version > 2.9.3</version>
2017-09-14 12:37:36 +02:00
</dependency>
<dependency >
<groupId > org.springframework.security</groupId>
2017-12-15 00:01:26 +01:00
<artifactId > spring-security-web</artifactId>
<version > 4.2.3.RELEASE</version>
2017-09-14 12:37:36 +02:00
</dependency>
2017-12-15 00:01:26 +01:00
<!-- g/a spring -->
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson - databind -->
2017-09-14 12:37:36 +02:00
<dependency >
2017-12-15 00:01:26 +01:00
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-web</artifactId>
2017-09-14 12:37:36 +02:00
</dependency>
2017-12-15 00:01:26 +01:00
<!-- https://mvnrepository.com/artifact/com.googlecode.json - simple/json - simple -->
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson - databind -->
2017-09-14 12:37:36 +02:00
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-databind</artifactId>
2017-12-15 00:01:26 +01:00
<exclusions >
<exclusion >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-annotations</artifactId>
</exclusion>
</exclusions>
2017-09-14 12:37:36 +02:00
</dependency>
2017-12-15 00:01:26 +01:00
2017-10-20 17:11:40 +02:00
<dependency >
2017-12-15 00:01:26 +01:00
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-annotations</artifactId>
<version > 2.9.0</version>
2017-10-24 18:33:51 +02:00
</dependency>
2017-12-15 00:01:26 +01:00
<!-- https://mvnrepository.com/artifact/org.springframework/spring - context -->
2017-11-30 11:10:42 +01:00
<dependency >
2017-12-15 00:01:26 +01:00
<groupId > org.springframework</groupId>
<artifactId > spring-context</artifactId>
<version > 4.3.10.RELEASE</version>
2017-11-30 11:10:42 +01:00
</dependency>
2017-12-15 00:01:26 +01:00
<!-- guava eu.eudat.cache -->
<dependency >
<groupId > com.google.guava</groupId>
<artifactId > guava</artifactId>
<version > 23.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring - context - support -->
2017-09-14 12:37:36 +02:00
<dependency >
2017-12-15 00:01:26 +01:00
<groupId > org.springframework</groupId>
<artifactId > spring-context-support</artifactId>
<version > 4.0.0.RELEASE</version>
2017-09-14 12:37:36 +02:00
</dependency>
<dependency >
2017-12-15 00:01:26 +01:00
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-data-jpa</artifactId>
2017-09-14 12:37:36 +02:00
</dependency>
2017-12-15 00:01:26 +01:00
<!-- https://mvnrepository.com/artifact/junit/junit -->
2017-09-14 12:37:36 +02:00
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
2017-12-15 00:01:26 +01:00
<version > 4.12</version>
2017-09-14 12:37:36 +02:00
<scope > test</scope>
</dependency>
<dependency >
2017-12-15 00:01:26 +01:00
<groupId > postgresql</groupId>
<artifactId > postgresql</artifactId>
<version > 9.1-901.jdbc4</version>
2017-09-14 12:37:36 +02:00
</dependency>
2017-12-12 11:14:11 +01:00
<dependency >
<groupId > io.springfox</groupId>
<artifactId > springfox-swagger-ui</artifactId>
<version > 2.7.0</version>
</dependency>
2017-10-13 14:23:59 +02:00
2017-09-14 12:37:36 +02:00
<!-- Various libs -->
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-lang3</artifactId>
<version > 3.5</version>
</dependency>
</dependencies>
<build >
<plugins >
2017-12-15 00:01:26 +01:00
<plugin >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-maven-plugin</artifactId>
</plugin>
2017-09-14 12:37:36 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<configuration >
<source > 1.8</source>
<target > 1.8</target>
</configuration>
</plugin>
</plugins>
<finalName > ${project.artifactId}</finalName>
</build>
</project>