Skip to content

Commit 6d785c3

Browse files
committed
enforcing java 1.8 via maven
1 parent 6e822c6 commit 6d785c3

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

pom.xml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,20 @@
1212
<version>2.9.3</version>
1313
</dependency>
1414
</dependencies>
15-
15+
16+
<build>
17+
<finalName>Cs2dJavaMapLibrary</finalName>
18+
<plugins>
19+
<plugin>
20+
<groupId>org.apache.maven.plugins</groupId>
21+
<artifactId>maven-compiler-plugin</artifactId>
22+
<version>2.3.1</version>
23+
<configuration>
24+
<source>1.8</source>
25+
<target>1.8</target>
26+
</configuration>
27+
</plugin>
28+
</plugins>
29+
</build>
30+
1631
</project>

0 commit comments

Comments
 (0)