|
@@ -570,29 +570,12 @@
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
- <groupId>org.codehaus.mojo</groupId>
|
|
|
- <artifactId>flatten-maven-plugin</artifactId>
|
|
|
- <version>1.3.0</version>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
<configuration>
|
|
|
- <updatePomFile>true</updatePomFile>
|
|
|
- <flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
|
+ <source>${java.version}</source>
|
|
|
+ <target>${java.version}</target>
|
|
|
</configuration>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>flatten</id>
|
|
|
- <phase>process-resources</phase>
|
|
|
- <goals>
|
|
|
- <goal>flatten</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- <execution>
|
|
|
- <id>flatten.clean</id>
|
|
|
- <phase>clean</phase>
|
|
|
- <goals>
|
|
|
- <goal>clean</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|