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>
<packaging > war</packaging>
<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-09-27 18:15:39 +02:00
<!-- <org.springframework.security.version>3.2.10.RELEASE</org.springframework.security.version> -->
<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-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> -->
<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>
<!-- g/a spring -->
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > javax.servlet-api</artifactId>
<version > ${javax.servlet.servlet-api.version}</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-core</artifactId>
<version > ${org.springframework.version}</version>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-aop</artifactId>
<version > ${org.springframework.version}</version>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-tx</artifactId>
<version > ${org.springframework.version}</version>
</dependency>
<!-- MY SPRING -->
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-orm</artifactId>
<version > ${org.springframework.version}</version>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-webmvc</artifactId>
<version > ${org.springframework.version}</version>
</dependency>
<!-- Spring Security -->
<dependency >
<groupId > org.springframework.security</groupId>
<artifactId > spring-security-core</artifactId>
<version > 4.2.3.RELEASE</version>
</dependency>
<dependency >
<groupId > org.springframework.security</groupId>
<artifactId > spring-security-web</artifactId>
<version > 4.2.3.RELEASE</version>
</dependency>
<dependency >
<groupId > org.springframework.security</groupId>
<artifactId > spring-security-config</artifactId>
<version > 4.2.3.RELEASE</version>
</dependency>
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > jstl</artifactId>
<version > 1.2</version>
</dependency>
<dependency >
<groupId > commons-fileupload</groupId>
<artifactId > commons-fileupload</artifactId>
<version > 1.2.1</version>
</dependency>
<!-- Jackson core and databind -->
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-annotations</artifactId>
<version > 2.8.4</version>
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-core</artifactId>
<version > 2.8.4</version>
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-databind</artifactId>
<version > 2.8.4</version>
</dependency>
<!-- Json < - > XML transformations -->
<dependency >
<groupId > org.json</groupId>
<artifactId > json</artifactId>
<version > 20160810</version>
</dependency>
<!-- tomcat jdbc -->
<dependency >
<groupId > org.apache.tomcat</groupId>
<artifactId > tomcat-jdbc</artifactId>
<version > ${org.apache.tomcat.tomcat-jdbc.version}</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > ${org.junit.version}</version>
<scope > test</scope>
</dependency>
<!-- PostGreSql base libs dependencies -->
<dependency >
<groupId > org.postgresql</groupId>
<artifactId > postgresql</artifactId>
<version > 9.4.1212</version>
</dependency>
<!-- LogBack dependencies -->
<dependency >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
<version > ${log4j.version}</version>
</dependency>
<dependency >
<groupId > commons-codec</groupId>
<artifactId > commons-codec</artifactId>
<version > ${commons-codec.version}</version>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > jcl-over-slf4j</artifactId>
<version > ${slf4j.version}</version>
<scope > runtime</scope>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-log4j12</artifactId>
<version > ${slf4j.version}</version>
<scope > runtime</scope>
</dependency>
<dependency >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
<version > ${log4j.version}</version>
<scope > runtime</scope>
</dependency>
2017-09-27 18:15:39 +02:00
<!-- Json Web Tokens -->
<!-- <dependency> -->
<!-- <groupId>io.jsonwebtoken</groupId> -->
<!-- <artifactId>jjwt</artifactId> -->
<!-- <version>0.7.0</version> -->
<!-- </dependency> -->
<dependency >
<groupId > com.google.apis</groupId>
<artifactId > google-api-services-oauth2</artifactId>
<version > v2-rev75-1.19.0</version>
</dependency>
<dependency >
<groupId > com.google.http-client</groupId>
<artifactId > google-http-client-jackson2</artifactId>
<version > ${project.http.version}</version>
</dependency>
<dependency >
<groupId > com.google.oauth-client</groupId>
<artifactId > google-oauth-client-jetty</artifactId>
<version > ${project.oauth.version}</version>
</dependency>
<!-- Spring Security -->
<dependency >
<groupId > org.springframework.security</groupId>
<artifactId > spring-security-web</artifactId>
<version > ${org.springframework.security.version}</version>
</dependency>
<dependency >
<groupId > org.springframework.security</groupId>
<artifactId > spring-security-config</artifactId>
<version > ${org.springframework.security.version}</version>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-tx</artifactId>
<version > ${org.springframework.version}</version>
</dependency>
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 >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<version > 3.1</version>
<configuration >
<source > 1.8</source>
<target > 1.8</target>
<encoding > UTF-8</encoding>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-dependency-plugin</artifactId>
<version > 2.10</version>
<executions >
<execution >
<id > analyze</id>
<goals >
<goal > analyze-only</goal>
</goals>
<configuration >
<failOnWarning > false</failOnWarning>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<finalName > ${project.artifactId}</finalName>
</build>
</project>