23 lines
602 B
Diff
23 lines
602 B
Diff
|
diff --git a/pom.xml b/pom.xml
|
||
|
index dcafc07..f5799e2 100644
|
||
|
--- a/pom.xml
|
||
|
+++ b/pom.xml
|
||
|
@@ -27,8 +27,15 @@
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
- <source>1.5</source>
|
||
|
- <target>1.5</target>
|
||
|
+ <source>1.8</source>
|
||
|
+ <target>1.8</target>
|
||
|
+ </configuration>
|
||
|
+ </plugin>
|
||
|
+ <plugin>
|
||
|
+ <groupId>org.apache.maven.plugins</groupId>
|
||
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
||
|
+ <configuration>
|
||
|
+ <source>1.8</source>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|