2016-04-07 10:15:34 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>com.baeldung</groupId>
|
2016-04-11 11:59:05 -04:00
|
|
|
<artifactId>spel</artifactId>
|
2016-04-07 10:15:34 -04:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
2016-12-03 06:41:45 -05:00
|
|
|
<properties>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<hamcrest.version>1.3</hamcrest.version>
|
|
|
|
<springframework.version>4.3.4.RELEASE</springframework.version>
|
|
|
|
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
|
|
|
|
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
|
|
|
</properties>
|
|
|
|
|
2016-04-07 10:15:34 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-12-03 06:41:45 -05:00
|
|
|
<version>${junit.version}</version>
|
2016-04-07 10:15:34 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-all</artifactId>
|
2016-12-03 06:41:45 -05:00
|
|
|
<version>${hamcrest.version}</version>
|
2016-04-07 10:15:34 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2016-04-11 11:59:05 -04:00
|
|
|
<artifactId>spring-context</artifactId>
|
2017-04-23 16:10:56 -04:00
|
|
|
<version>${springframework.version}</version>
|
2016-04-07 10:15:34 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2016-04-11 11:59:05 -04:00
|
|
|
<artifactId>spring-test</artifactId>
|
2016-12-03 06:41:45 -05:00
|
|
|
<version>${springframework.version}</version>
|
2016-04-11 11:59:05 -04:00
|
|
|
<scope>test</scope>
|
2016-04-07 10:15:34 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-12-03 06:41:45 -05:00
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
2016-04-07 10:15:34 -04:00
|
|
|
<configuration>
|
|
|
|
<debug>true</debug>
|
|
|
|
<optimize>true</optimize>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<showDeprecation>true</showDeprecation>
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-10-17 07:19:52 -04:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2016-12-03 06:41:45 -05:00
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
2016-10-17 07:19:52 -04:00
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
|
|
<exclude>**/*LiveTest.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-04-07 10:15:34 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2016-10-17 07:19:52 -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-04-07 10:15:34 -04:00
|
|
|
</project>
|