Added the maven compiler plugin in the pom.xml

This commit is contained in:
Mathias Wagner 2023-09-09 21:44:36 +02:00
parent 788d21da00
commit f75e582f64
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

13
pom.xml
View File

@ -14,4 +14,17 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>