Skip to content

Commit 0e90771

Browse files
authored
Made the build work again with JDK 8 (#1585)
1 parent 0409a2e commit 0e90771

File tree

1 file changed

+7
-21
lines changed

1 file changed

+7
-21
lines changed

pom.xml

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -63,28 +63,14 @@
6363
<plugin>
6464
<groupId>org.apache.maven.plugins</groupId>
6565
<artifactId>maven-compiler-plugin</artifactId>
66-
<version>3.8.0</version>
67-
<executions>
68-
<execution>
69-
<id>default-compile</id>
70-
<configuration>
71-
<release>9</release>
72-
</configuration>
73-
</execution>
74-
<execution>
75-
<id>base-compile</id>
76-
<goals>
77-
<goal>compile</goal>
78-
</goals>
79-
<configuration>
80-
<excludes>
81-
<exclude>module-info.java</exclude>
82-
</excludes>
83-
</configuration>
84-
</execution>
85-
</executions>
66+
<version>3.8.1</version>
8667
<configuration>
87-
<release>6</release>
68+
<excludes>
69+
<release>6</release>
70+
<exclude>**/module-info.java</exclude>
71+
</excludes>
72+
<source>1.6</source>
73+
<target>1.6</target>
8874
</configuration>
8975
</plugin>
9076
<plugin>

0 commit comments

Comments
 (0)