java-tutorials/guava19/pom.xml

45 lines
1.5 KiB
XML
Raw Normal View History

2016-02-01 09:12:47 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2016-03-06 04:49:59 -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">
2016-02-01 09:12:47 -05:00
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
2016-03-06 04:49:59 -05:00
<artifactId>guava19</artifactId>
<version>0.1.0-SNAPSHOT</version>
2016-02-01 09:12:47 -05:00
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
</dependency>
<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>
</dependencies>
2016-03-06 04:49:59 -05:00
2016-02-01 09:12:47 -05:00
<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>