Add verbose and fork options to maven-compiler-plugin configuration

This commit is contained in:
zhiqiang feng
2024-02-23 09:40:04 +00:00
parent 6e588edc87
commit e0ab44930f
+6
View File
@@ -214,7 +214,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<configuration>
<verbose>true</verbose>
<fork>true</fork>
<source>1.8</source>
<target>1.8</target>
<annotationProcessorPaths>
@@ -224,6 +227,9 @@
<version>${org.mapstruct.version}</version>
</path>
</annotationProcessorPaths>
<compilerArgs>
<arg>-Xlint:all,-options,-path</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>