2016-07-24 05:53:50 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-06-01 08:47:26 -04:00
|
|
|
|
2016-07-01 13:48:43 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-06-01 08:47:26 -04:00
|
|
|
|
2016-07-01 13:48:43 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
2016-11-20 05:09:40 -05:00
|
|
|
<artifactId>spring-core</artifactId>
|
2016-07-01 13:48:43 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>war</packaging>
|
2016-06-01 08:47:26 -04:00
|
|
|
|
2016-11-20 05:09:40 -05:00
|
|
|
<name>spring-core</name>
|
2016-06-01 08:47:26 -04:00
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2016-07-01 13:48:43 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
2016-12-08 15:58:00 -05:00
|
|
|
<version>${mockito.version}</version>
|
2016-07-01 13:48:43 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
2016-12-08 15:58:00 -05:00
|
|
|
<version>${spring.version}</version>
|
2016-07-01 13:48:43 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
2017-04-19 16:57:17 -04:00
|
|
|
<version>${spring.version}</version>
|
2016-07-01 13:48:43 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-beans</artifactId>
|
2016-12-08 15:58:00 -05:00
|
|
|
<version>${spring.version}</version>
|
2016-07-01 13:48:43 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
2016-12-08 15:58:00 -05:00
|
|
|
<version>${spring.version}</version>
|
2016-07-01 13:48:43 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.inject</groupId>
|
|
|
|
<artifactId>javax.inject</artifactId>
|
2016-12-08 15:58:00 -05:00
|
|
|
<version>${javax.inject.version}</version>
|
2016-07-01 13:48:43 -04:00
|
|
|
</dependency>
|
2016-11-21 07:41:33 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2016-12-08 15:58:00 -05:00
|
|
|
<version>${guava.version}</version>
|
2016-11-21 07:41:33 -05:00
|
|
|
</dependency>
|
2017-02-01 01:53:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
2016-07-01 13:48:43 -04:00
|
|
|
</dependencies>
|
2016-06-01 08:47:26 -04:00
|
|
|
|
2016-07-01 13:48:43 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2016-07-24 05:53:50 -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>
|
|
|
|
|
2016-07-01 13:48:43 -04:00
|
|
|
</plugins>
|
2016-07-24 05:53:50 -04:00
|
|
|
|
2016-07-01 13:48:43 -04:00
|
|
|
</build>
|
2016-06-01 08:47:26 -04:00
|
|
|
|
2016-10-22 11:21:26 -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>
|
|
|
|
</profiles>
|
|
|
|
|
2016-07-24 05:53:50 -04:00
|
|
|
<properties>
|
2016-12-08 15:58:00 -05:00
|
|
|
<mockito.version>1.10.19</mockito.version>
|
|
|
|
<spring.version>4.3.4.RELEASE</spring.version>
|
|
|
|
<javax.inject.version>1</javax.inject.version>
|
|
|
|
<guava.version>20.0</guava.version>
|
2016-07-24 05:53:50 -04:00
|
|
|
<maven-war-plugin.version>2.6</maven-war-plugin.version>
|
2017-02-01 01:53:17 -05:00
|
|
|
<lombok.version>1.16.12</lombok.version>
|
2016-07-24 05:53:50 -04:00
|
|
|
</properties>
|
|
|
|
|
2016-07-01 13:48:43 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>java.net</id>
|
|
|
|
<url>https://maven.java.net/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2016-07-24 05:53:50 -04:00
|
|
|
|
2016-06-01 08:47:26 -04:00
|
|
|
</project>
|