java-tutorials/spring-spel/pom.xml

52 lines
1.8 KiB
XML
Raw Normal View History

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>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
2016-04-11 11:59:05 -04:00
<artifactId>spring-context</artifactId>
2016-04-07 10:15:34 -04:00
<version>4.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
2016-04-11 11:59:05 -04:00
<artifactId>spring-test</artifactId>
2016-04-07 10:15:34 -04:00
<version>4.0.6.RELEASE</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>
<version>3.3</version>
<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>
</plugins>
</build>
</project>