java-tutorials/spring-rest/pom.xml

349 lines
12 KiB
XML
Raw Normal View History

2015-07-23 09:54:23 -04: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>
2016-03-06 04:49:59 -05:00
<groupId>com.baeldung</groupId>
2015-07-23 09:54:23 -04:00
<artifactId>spring-rest</artifactId>
<version>0.1-SNAPSHOT</version>
<name>spring-rest</name>
<packaging>war</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2016-06-22 10:49:39 -04:00
<version>1.3.5.RELEASE</version>
2015-07-23 09:54:23 -04:00
</parent>
<dependencies>
<!-- Spring Boot Dependencies -->
2016-10-11 04:38:51 -04:00
2015-07-23 09:54:23 -04:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.1</version>
</dependency>
<!-- web -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<scope>runtime</scope>
</dependency>
<!-- marshalling -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
2016-10-11 04:38:51 -04:00
2016-09-12 06:55:46 -04:00
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
</dependency>
2015-07-23 09:54:23 -04:00
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.8</version>
</dependency>
<!-- util -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.2.1</version>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<!-- <scope>runtime</scope> -->
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<!-- <scope>runtime</scope> --> <!-- some spring dependencies need to compile against jcl -->
</dependency>
<dependency> <!-- needed to bridge to slf4j for projects that use the log4j APIs directly -->
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
2016-10-11 04:38:51 -04:00
<!-- okhttp -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${com.squareup.okhttp3.version}</version>
</dependency>
2015-07-23 09:54:23 -04:00
<!-- test scoped -->
<dependency>
<groupId>junit</groupId>
2015-12-21 04:34:42 -05:00
<artifactId>junit</artifactId>
2015-07-23 09:54:23 -04:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
2015-07-22 17:01:00 -04:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
2016-06-30 20:07:08 -04:00
2016-09-12 06:55:46 -04:00
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>${rest-assured.version}</version>
</dependency>
2016-10-11 04:38:51 -04:00
2016-09-12 06:55:46 -04:00
<!-- -->
2016-06-30 20:07:08 -04:00
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>2.6.1</version>
</dependency>
2016-10-11 04:38:51 -04:00
2016-06-30 20:07:08 -04:00
<dependency>
2016-07-11 17:00:07 -04:00
<groupId>com.esotericsoftware</groupId>
2016-06-30 20:07:08 -04:00
<artifactId>kryo</artifactId>
2016-07-11 17:00:07 -04:00
<version>4.0.0</version>
2016-06-30 20:07:08 -04:00
</dependency>
2015-07-23 09:54:23 -04:00
</dependencies>
<build>
<finalName>spring-rest</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
2016-10-11 04:38:51 -04:00
<exclude>**/*LiveTest.java</exclude>
2015-07-23 09:54:23 -04:00
</excludes>
<systemPropertyVariables>
<!-- <provPersistenceTarget>h2</provPersistenceTarget> -->
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>${cargo-maven2-plugin.version}</version>
<configuration>
<wait>true</wait>
<container>
2016-09-23 15:40:28 -04:00
<containerId>tomcat8x</containerId>
2015-07-23 09:54:23 -04:00
<type>embedded</type>
<systemProperties>
<!-- <provPersistenceTarget>cargo</provPersistenceTarget> -->
</systemProperties>
</container>
<configuration>
<properties>
<cargo.servlet.port>8082</cargo.servlet.port>
</properties>
</configuration>
</configuration>
</plugin>
</plugins>
</build>
2016-09-23 06:26:48 -04:00
<profiles>
<profile>
<id>live</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<executions>
<execution>
<id>start-server</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop-server</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<excludes>
<exclude>none</exclude>
</excludes>
<includes>
<include>**/*LiveTest.java</include>
</includes>
<systemPropertyVariables>
<webTarget>cargo</webTarget>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2016-10-11 04:38:51 -04:00
2015-07-23 09:54:23 -04:00
<properties>
<!-- Spring -->
<!-- persistence -->
2015-08-15 10:38:25 -04:00
<hibernate.version>4.3.11.Final</hibernate.version>
2016-06-22 10:49:39 -04:00
<mysql-connector-java.version>5.1.39</mysql-connector-java.version>
2015-07-23 09:54:23 -04:00
<!-- various -->
2015-12-21 04:34:42 -05:00
<hibernate-validator.version>5.2.2.Final</hibernate-validator.version>
2015-07-23 09:54:23 -04:00
<!-- util -->
2015-12-21 04:34:42 -05:00
<guava.version>19.0</guava.version>
2015-07-23 09:54:23 -04:00
<commons-lang3.version>3.4</commons-lang3.version>
<!-- testing -->
<org.hamcrest.version>1.3</org.hamcrest.version>
2015-12-21 04:34:42 -05:00
<junit.version>4.12</junit.version>
2015-07-23 09:54:23 -04:00
<mockito.version>1.10.19</mockito.version>
<httpcore.version>4.4.1</httpcore.version>
<httpclient.version>4.5</httpclient.version>
2016-03-06 05:10:06 -05:00
<rest-assured.version>2.9.0</rest-assured.version>
2015-07-23 09:54:23 -04:00
<!-- logging -->
2015-12-21 04:34:42 -05:00
<org.slf4j.version>1.7.13</org.slf4j.version>
2015-07-23 09:54:23 -04:00
<logback.version>1.1.3</logback.version>
<!-- Maven plugins -->
2016-03-06 05:10:06 -05:00
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
2015-07-23 09:54:23 -04:00
<maven-war-plugin.version>2.6</maven-war-plugin.version>
2016-03-06 04:59:13 -05:00
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
2016-09-23 15:40:28 -04:00
<cargo-maven2-plugin.version>1.6.0</cargo-maven2-plugin.version>
2015-07-23 09:54:23 -04:00
2016-10-11 04:38:51 -04:00
<!-- okhttp -->
<com.squareup.okhttp3.version>3.4.1</com.squareup.okhttp3.version>
2015-07-23 09:54:23 -04:00
</properties>
2016-10-31 07:30:35 -04:00
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.4</version>
<configuration>
<effort>Max</effort>
<omitVisitors>FindDeadLocalStores,FindNullDeref</omitVisitors>
</configuration>
</plugin>
</plugins>
</reporting>
2016-06-30 20:07:08 -04:00
</project>