java-tutorials/spring-mvc-java/pom.xml

377 lines
14 KiB
XML
Raw Normal View History

2016-08-23 06:14:12 -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">
2015-07-23 09:54:23 -04:00
<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-mvc-java</artifactId>
<version>0.1-SNAPSHOT</version>
<name>spring-mvc-java</name>
<packaging>war</packaging>
2016-10-12 01:00:02 -04:00
2015-07-23 09:54:23 -04:00
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${org.springframework.version}</version>
2016-08-23 06:14:12 -04:00
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
2015-07-23 09:54:23 -04:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${org.springframework.version}</version>
</dependency>
2016-04-18 10:42:18 -04:00
<dependency>
2016-08-23 06:14:12 -04:00
<groupId>org.springframework</groupId>
<artifactId>spring-websocket</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-messaging</artifactId>
<version>${org.springframework.version}</version>
</dependency>
2016-10-12 01:00:02 -04:00
2016-08-23 06:14:12 -04:00
<!-- Jackson -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
2016-10-12 00:44:40 -04:00
<version>${jackson.version}</version>
2016-08-23 06:14:12 -04:00
</dependency>
2015-07-23 09:54:23 -04:00
<!-- web -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
2016-12-06 16:52:34 -05:00
<version>${javax.servlet-api.version}</version>
2015-07-23 09:54:23 -04:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
2016-12-06 16:52:34 -05:00
<version>${jstl.version}</version>
2015-07-23 09:54:23 -04:00
<scope>runtime</scope>
</dependency>
2016-10-12 01:00:02 -04:00
<!-- AOP -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj.version}</version>
</dependency>
2016-08-23 06:14:12 -04:00
<!-- common -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
2016-12-06 16:52:34 -05:00
<version>${commons-fileupload.version}</version>
2016-08-23 06:14:12 -04:00
</dependency>
2016-10-12 01:00:02 -04:00
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>${net.sourceforge.htmlunit}</version>
</dependency>
2016-08-23 06:14:12 -04:00
<!-- Thymeleaf -->
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring4</artifactId>
<version>${thymeleaf.version}</version>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>${thymeleaf.version}</version>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${org.slf4j.version}</version>
</dependency>
2016-08-23 06:14:12 -04:00
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<!-- <scope>runtime</scope> -->
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
2016-08-23 06:14:12 -04:00
<artifactId>jcl-over-slf4j</artifactId>
<!-- <scope>runtime</scope> --> <!-- some spring dependencies need to compile against jcl -->
<version>${org.slf4j.version}</version>
</dependency>
2016-08-23 06:14:12 -04:00
<dependency> <!-- needed to bridge to slf4j for projects that use the log4j APIs directly -->
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>${org.slf4j.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
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${org.hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${org.hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
2016-08-14 03:45:23 -04:00
<dependency>
2016-08-23 06:14:12 -04:00
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
2016-12-06 16:52:34 -05:00
<version>${jsonpath.version}</version>
2016-08-23 06:14:12 -04:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${org.springframework.version}</version>
<scope>test</scope>
</dependency>
2016-08-23 06:14:12 -04:00
2015-07-23 09:54:23 -04:00
</dependencies>
2015-12-18 06:14:30 -05:00
2015-07-23 09:54:23 -04:00
<build>
<finalName>spring-mvc-java</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2015-12-18 06:14:30 -05:00
2015-07-23 09:54:23 -04:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2015-12-18 06:14:30 -05:00
<plugin>
<artifactId>maven-resources-plugin</artifactId>
2016-12-06 16:52:34 -05:00
<version>${maven-resources-plugin.version}</version>
</plugin>
2015-12-18 06:14:30 -05:00
2015-07-23 09:54:23 -04:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${maven-war-plugin.version}</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<excludes>
2016-10-12 01:00:02 -04:00
<exclude>**/*IntegrationTest.java</exclude>
2016-12-20 11:14:31 -05:00
<exclude>**/*LiveTest.java</exclude>
2015-07-23 09:54:23 -04:00
</excludes>
2016-12-18 15:04:12 -05:00
<testFailureIgnore>true</testFailureIgnore>
2015-07-23 09:54:23 -04:00
<systemPropertyVariables>
<!-- <provPersistenceTarget>h2</provPersistenceTarget> -->
</systemPropertyVariables>
</configuration>
</plugin>
2016-12-20 11:14:31 -05:00
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>${cargo-maven2-plugin.version}</version>
<configuration>
<wait>true</wait>
<container>
<containerId>jetty8x</containerId>
<type>embedded</type>
<systemProperties>
<!-- <provPersistenceTarget>cargo</provPersistenceTarget> -->
</systemProperties>
</container>
<configuration>
<properties>
<cargo.servlet.port>8082</cargo.servlet.port>
</properties>
</configuration>
</configuration>
</plugin>
2015-07-23 09:54:23 -04:00
</plugins>
</build>
2016-08-23 06:14:12 -04:00
2016-10-20 15:53:32 -04:00
<profiles>
<profile>
<id>integration</id>
<build>
<plugins>
<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>**/*LiveTest.java</exclude>
</excludes>
<includes>
<include>**/*IntegrationTest.java</include>
</includes>
</configuration>
</execution>
</executions>
<configuration>
<systemPropertyVariables>
<test.mime>json</test.mime>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</profile>
2016-12-20 11:14:31 -05:00
<profile>
<id>live</id>
<build>
<plugins>
<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>**/*IntegrationTest.java</exclude>
</excludes>
<includes>
<include>**/*LiveTest.java</include>
</includes>
</configuration>
</execution>
</executions>
<configuration>
<systemPropertyVariables>
<test.mime>json</test.mime>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
<wait>false</wait>
</configuration>
<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>
</plugins>
</build>
</profile>
2016-10-20 15:53:32 -04:00
</profiles>
2015-07-23 09:54:23 -04:00
<properties>
<!-- Spring -->
2016-11-18 06:26:34 -05:00
<org.springframework.version>4.3.4.RELEASE</org.springframework.version>
<org.springframework.security.version>4.2.0.RELEASE</org.springframework.security.version>
2016-12-06 16:52:34 -05:00
<thymeleaf.version>2.1.5.RELEASE</thymeleaf.version>
<jackson.version>2.8.5</jackson.version>
2016-10-12 01:00:02 -04:00
2015-07-23 09:54:23 -04:00
<!-- persistence -->
2016-12-06 16:52:34 -05:00
<hibernate.version>5.2.5.Final</hibernate.version>
<mysql-connector-java.version>5.1.40</mysql-connector-java.version>
2016-10-12 01:00:02 -04:00
2015-07-23 09:54:23 -04:00
<!-- logging -->
2016-08-23 06:14:12 -04:00
<org.slf4j.version>1.7.21</org.slf4j.version>
2016-12-06 16:52:34 -05:00
<logback.version>1.1.7</logback.version>
2015-07-23 09:54:23 -04:00
<!-- various -->
2016-12-06 16:52:34 -05:00
<hibernate-validator.version>5.3.3.Final</hibernate-validator.version>
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
<jstl.version>1.2</jstl.version>
2016-10-12 01:00:02 -04:00
2015-07-23 09:54:23 -04:00
<!-- util -->
2015-12-21 04:34:42 -05:00
<guava.version>19.0</guava.version>
2016-12-06 16:52:34 -05:00
<commons-lang3.version>3.5</commons-lang3.version>
<commons-fileupload.version>1.3.2</commons-fileupload.version>
<jsonpath.version>2.2.0</jsonpath.version>
2016-10-12 01:00:02 -04:00
2015-07-23 09:54:23 -04:00
<!-- 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>
2016-12-06 16:52:34 -05:00
<httpcore.version>4.4.5</httpcore.version>
<httpclient.version>4.5.2</httpclient.version>
2016-03-06 05:10:06 -05:00
<rest-assured.version>2.9.0</rest-assured.version>
2016-08-01 04:39:12 -04:00
<net.sourceforge.htmlunit>2.23</net.sourceforge.htmlunit>
2016-10-12 01:00:02 -04:00
2015-07-23 09:54:23 -04:00
<!-- maven plugins -->
2016-12-06 16:52:34 -05:00
<maven-compiler-plugin.version>3.6.0</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>
2015-07-23 09:54:23 -04:00
<maven-resources-plugin.version>2.7</maven-resources-plugin.version>
2016-12-06 16:52:34 -05:00
<cargo-maven2-plugin.version>1.6.1</cargo-maven2-plugin.version>
2016-08-23 06:14:12 -04:00
<!-- AspectJ -->
2016-12-06 16:52:34 -05:00
<aspectj.version>1.8.9</aspectj.version>
2015-07-23 09:54:23 -04:00
</properties>
2016-08-23 06:14:12 -04:00
2016-08-01 04:39:12 -04:00
</project>
2016-10-04 09:16:50 -04:00