2014-01-06 14:35:23 -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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-03-06 04:49:59 -05:00
|
|
|
<groupId>com.baeldung</groupId>
|
2014-04-04 10:21:15 -04:00
|
|
|
<artifactId>guava</artifactId>
|
2016-03-06 04:49:59 -05:00
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
2014-01-06 14:35:23 -05:00
|
|
|
|
2014-04-04 10:21:15 -04:00
|
|
|
<name>guava</name>
|
2014-01-06 14:35:23 -05:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- utils -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2014-01-11 10:48:59 -05:00
|
|
|
<version>${guava.version}</version>
|
2014-01-06 14:35:23 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
2016-12-12 14:54:16 -05:00
|
|
|
<version>${commons-collections4.version}</version>
|
2014-01-06 14:35:23 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2014-01-11 10:48:59 -05:00
|
|
|
<version>${commons-lang3.version}</version>
|
2014-01-06 14:35:23 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- test scoped -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
2015-12-21 04:34:42 -05:00
|
|
|
<artifactId>junit</artifactId>
|
2014-01-06 14:35:23 -05: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>
|
|
|
|
|
2017-01-29 15:52:35 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-01-06 14:35:23 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2014-04-04 10:21:15 -04:00
|
|
|
<finalName>guava</finalName>
|
2014-01-06 14:35:23 -05:00
|
|
|
<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>
|
2015-06-20 00:40:22 -04:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2014-01-06 14:35:23 -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>
|
|
|
|
<!-- util -->
|
2017-01-14 04:07:53 -05:00
|
|
|
<guava.version>21.0</guava.version>
|
2016-12-12 14:54:16 -05:00
|
|
|
<commons-lang3.version>3.5</commons-lang3.version>
|
|
|
|
<commons-collections4.version>4.1</commons-collections4.version>
|
2014-01-06 14:35:23 -05: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-01-01 07:54:40 -05:00
|
|
|
<mockito.version>1.10.19</mockito.version>
|
2017-01-29 15:52:35 -05:00
|
|
|
<assertj.version>3.6.1</assertj.version>
|
2014-01-06 14:35:23 -05:00
|
|
|
|
|
|
|
<!-- maven plugins -->
|
2016-12-12 14:54:16 -05:00
|
|
|
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
|
2016-03-06 04:59:13 -05:00
|
|
|
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
2014-01-06 14:35:23 -05:00
|
|
|
|
|
|
|
</properties>
|
2013-10-22 10:34:51 -04:00
|
|
|
|
|
|
|
</project>
|