Skip to content
This repository was archived by the owner on Nov 12, 2019. It is now read-only.

Commit 7d36a75

Browse files
committed
update dependency and JDK version
1 parent 413e326 commit 7d36a75

File tree

1 file changed

+21
-6
lines changed

1 file changed

+21
-6
lines changed

pom.xml

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,41 @@
3434
</properties>
3535

3636
<dependencies>
37+
<dependency>
38+
<groupId>com.google.guava</groupId>
39+
<artifactId>guava</artifactId>
40+
<version>15.0</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>com.google.code.findbugs</groupId>
44+
<artifactId>jsr305</artifactId>
45+
<version>2.0.2</version>
46+
<optional>true</optional>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.hamcrest</groupId>
50+
<artifactId>hamcrest-library</artifactId>
51+
<version>1.2.1</version>
52+
<scope>test</scope>
53+
</dependency>
3754
<dependency>
3855
<groupId>junit</groupId>
3956
<artifactId>junit</artifactId>
4057
<version>4.11</version>
41-
<type>jar</type>
4258
<scope>test</scope>
4359
</dependency>
4460
</dependencies>
4561

4662
<build>
4763
<plugins>
48-
4964
<plugin>
5065
<groupId>org.apache.maven.plugins</groupId>
5166
<artifactId>maven-compiler-plugin</artifactId>
52-
<version>2.3.2</version>
67+
<version>2.5.1</version>
5368
<configuration>
54-
<source>1.5</source>
55-
<target>1.5</target>
56-
<encoding>UTF-8</encoding>
69+
<source>1.7</source>
70+
<target>1.7</target>
71+
<encoding>${project.build.sourceEncoding}</encoding>
5772
</configuration>
5873
</plugin>
5974

0 commit comments

Comments
 (0)