Skip to content

Commit fc331ee

Browse files
author
jgwilson42
committed
Make maven use java 1.8
1 parent 4d6c118 commit fc331ee

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

main-module/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,16 @@
1818
<scope>test</scope>
1919
</dependency>
2020
</dependencies>
21+
<build>
22+
<plugins>
23+
<plugin>
24+
<groupId>org.apache.maven.plugins</groupId>
25+
<artifactId>maven-compiler-plugin</artifactId>
26+
<configuration>
27+
<source>1.8</source>
28+
<target>1.8</target>
29+
</configuration>
30+
</plugin>
31+
</plugins>
32+
</build>
2133
</project>

0 commit comments

Comments
 (0)