Skip to content

Commit

Permalink
Consistent maven-antrun-plugin executions
Browse files Browse the repository at this point in the history
There are two executions configured in this pom.
They now follow this order: id, phase, configuration, goals
  • Loading branch information
darxriggs committed Oct 19, 2019
1 parent 9940847 commit 4f957a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -891,16 +891,16 @@
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>initialize</phase>
<id>warn-deprecated-java.level</id>
<goals>
<goal>run</goal>
</goals>
<phase>initialize</phase>
<configuration>
<target>
<echo>WARNING: Plugin POM defines java.level=${java.level} which is deprecated in the current Plugin POM version. See https://github.com/jenkinsci/plugin-pom/blob/master/README.md#java-support</echo>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 4f957a0

Please sign in to comment.