pom: remove source/target configuration on maven-compiler-plugin

On Java 11, which we require for building, the compiler accepts
--release 8 and no longer requires -source or -target, so these are
unnecessary
This commit is contained in:
Adam
2021-09-05 15:38:31 -04:00
parent cdbb0a3aa7
commit 2cdd1be7d8
3 changed files with 2 additions and 5 deletions

View File

@@ -167,6 +167,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source> <!-- required for mapstruct -->
<target>1.8</target> <!-- required for mapstruct -->
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>