diff --git a/pom.xml b/pom.xml index 5f861dccb0e828b087264138d89f3b3242133948..3ff8287b7770ea692afe3cbd2103f58b66d8a3df 100644 --- a/pom.xml +++ b/pom.xml @@ -409,26 +409,31 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <annotationProcessorPaths> - <path> - <groupId>org.mapstruct</groupId> - <artifactId>mapstruct-processor</artifactId> - <version>${mapstruct.version}</version> - </path> - </annotationProcessorPaths> - <compilerArgs> - <compilerArg> - -Amapstruct.suppressGeneratorTimestamp=true - </compilerArg> - <compilerArg> - -Amapstruct.suppressGeneratorVersionInfoComment=true - </compilerArg> - <compilerArg> - -Amapstruct.defaultComponentModel=spring - </compilerArg> - </compilerArgs> - </configuration> + <executions> + <execution> + <id>default-compile</id> + <configuration> + <annotationProcessorPaths> + <path> + <groupId>org.mapstruct</groupId> + <artifactId>mapstruct-processor</artifactId> + <version>${mapstruct.version}</version> + </path> + </annotationProcessorPaths> + <compilerArgs> + <compilerArg> + -Amapstruct.suppressGeneratorTimestamp=true + </compilerArg> + <compilerArg> + -Amapstruct.suppressGeneratorVersionInfoComment=true + </compilerArg> + <compilerArg> + -Amapstruct.defaultComponentModel=spring + </compilerArg> + </compilerArgs> + </configuration> + </execution> + </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>