java-tutorials/core-java-8/pom.xml

119 lines
2.9 KiB
XML
Raw Normal View History

2015-01-03 10:58:16 -05: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">
2013-12-25 07:22:15 -05:00
<modelVersion>4.0.0</modelVersion>
<groupId>org.baeldung</groupId>
<artifactId>spring-rest</artifactId>
<version>0.1-SNAPSHOT</version>
<name>spring-rest</name>
<dependencies>
<!-- utils -->
2014-11-20 04:32:43 -05:00
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
2013-12-25 07:22:15 -05:00
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
2014-11-20 04:32:43 -05:00
<version>${guava.version}</version>
2013-12-25 07:22:15 -05:00
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
2013-12-25 07:22:15 -05:00
</dependency>
<!-- test scoped -->
2015-01-03 10:58:16 -05:00
2013-12-25 07:22:15 -05:00
<dependency>
<groupId>org.hamcrest</groupId>
2015-01-03 10:58:16 -05:00
<artifactId>hamcrest-library</artifactId>
2013-12-25 07:22:15 -05:00
<version>${org.hamcrest.version}</version>
<scope>test</scope>
</dependency>
2015-01-03 10:58:16 -05:00
2013-12-25 07:22:15 -05:00
<dependency>
2015-01-03 10:58:16 -05:00
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
2013-12-25 07:22:15 -05:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>core-java-8</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>
<version>${maven-compiler-plugin.version}</version>
<configuration>
2013-12-25 07:37:06 -05:00
<source>1.8</source>
<target>1.8</target>
2013-12-25 07:22:15 -05:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
</plugins>
</build>
<properties>
<!-- logging -->
<org.slf4j.version>1.7.5</org.slf4j.version>
<logback.version>1.0.11</logback.version>
<!-- various -->
2015-01-03 10:58:16 -05:00
<hibernate-validator.version>5.1.3.Final</hibernate-validator.version>
2013-12-25 07:22:15 -05:00
<!-- util -->
2014-11-20 04:32:43 -05:00
<guava.version>18.0</guava.version>
<commons-lang3.version>3.3.2</commons-lang3.version>
2013-12-25 07:22:15 -05:00
<!-- testing -->
<org.hamcrest.version>1.3</org.hamcrest.version>
2015-01-03 10:58:16 -05:00
<junit.version>4.12</junit.version>
<mockito.version>1.10.19</mockito.version>
2013-12-25 07:22:15 -05:00
<!-- maven plugins -->
2014-11-02 07:18:31 -05:00
<maven-compiler-plugin.version>3.2</maven-compiler-plugin.version>
2015-02-21 12:57:34 -05:00
<maven-war-plugin.version>2.6</maven-war-plugin.version>
2015-01-03 10:58:16 -05:00
<maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version>
2014-11-02 07:18:31 -05:00
<maven-resources-plugin.version>2.7</maven-resources-plugin.version>
2013-12-25 07:22:15 -05:00
</properties>
2013-12-25 07:06:55 -05:00
</project>