2015-12-17 12:44:32 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-10-12 00:44:40 -04: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">
|
2015-12-17 12:44:32 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>com.baeldung</groupId>
|
2016-03-06 04:49:59 -05:00
|
|
|
<artifactId>guava18</artifactId>
|
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
2015-12-17 12:44:32 -05:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2016-12-12 14:54:16 -05:00
|
|
|
<version>${guava.version}</version>
|
2015-12-17 12:44:32 -05:00
|
|
|
</dependency>
|
2016-10-12 00:44:40 -04:00
|
|
|
|
2015-12-17 12:44:32 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-12-12 14:54:16 -05:00
|
|
|
<version>${junit.version}</version>
|
2016-10-12 00:44:40 -04:00
|
|
|
<scope>test</scope>
|
2015-12-17 12:44:32 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-10-12 00:44:40 -04:00
|
|
|
|
2015-12-17 12:44:32 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-12-12 14:54:16 -05:00
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
2015-12-17 12:44:32 -05: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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-12-12 14:54:16 -05:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<guava.version>18.0</guava.version>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
|
|
|
|
</properties>
|
2015-12-17 12:44:32 -05:00
|
|
|
</project>
|