Skip to content

Commit 00e6e09

Browse files
committed
Enabled Java 8 features.
1 parent 6698237 commit 00e6e09

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,17 @@
6060

6161
<build>
6262
<plugins>
63-
<!-- Tell maven to compile using Java 1.7 -->
63+
<!-- Tell maven to compile using Java 8 -->
6464
<plugin>
6565
<groupId>org.apache.maven.plugins</groupId>
6666
<artifactId>maven-compiler-plugin</artifactId>
6767
<version>3.0</version>
6868
<configuration>
69-
<source>1.7</source>
70-
<target>1.7</target>
69+
<source>1.8</source>
70+
<target>1.8</target>
7171
</configuration>
7272
</plugin>
7373
</plugins>
7474
</build>
7575

76-
</project>
76+
</project>

0 commit comments

Comments
 (0)