Skip to content
This repository was archived by the owner on Aug 11, 2020. It is now read-only.

Commit 5d46979

Browse files
author
Jason van Zyl
committed
Needs to build with 1.7 because of some Java7 utils, but source/target needs to be 1.6. Maybe that was implicit in
the existing configuration, now it's explicit.
1 parent 18bd77d commit 5d46979

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,6 @@ limitations under the License.
6969
</systemProperties>
7070
</configuration>
7171
</plugin>
72-
<!--
73-
74-
This should not be Java7 while Maven still officially supports 1.6
75-
7672
<plugin>
7773
<groupId>org.apache.maven.plugins</groupId>
7874
<artifactId>maven-enforcer-plugin</artifactId>
@@ -93,7 +89,14 @@ limitations under the License.
9389
</execution>
9490
</executions>
9591
</plugin>
96-
-->
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-compiler-plugin</artifactId>
95+
<configuration>
96+
<source>1.6</source>
97+
<target>1.6</target>
98+
</configuration>
99+
</plugin>
97100
</plugins>
98101
</build>
99102
</project>

0 commit comments

Comments
 (0)