You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2022/05/13 11:18:46 UTC

[commons-imaging] branch release updated: Replace tasks by target for maven-antrun-plugin (fixing RC1, thanks Thomas!)

This is an automated email from the ASF dual-hosted git repository.

kinow pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git


The following commit(s) were added to refs/heads/release by this push:
     new 01aa0a36 Replace tasks by target for maven-antrun-plugin (fixing RC1, thanks Thomas!)
01aa0a36 is described below

commit 01aa0a365c7f2bdf1bf72691dc1898626345da24
Author: Bruno P. Kinoshita <ki...@users.noreply.github.com>
AuthorDate: Fri May 13 23:18:35 2022 +1200

    Replace tasks by target for maven-antrun-plugin (fixing RC1, thanks Thomas!)
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 138cea5f..fa1259a7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -406,7 +406,7 @@
                   <goal>run</goal>
                 </goals>
                 <configuration>
-                  <tasks>
+                  <target>
                     <exec executable="svn">
                       <arg line="checkout --depth immediates ${commons.scmPubUrl} ${commons.scmPubCheckoutDirectory}" />
                     </exec>
@@ -421,7 +421,7 @@
                     <exec executable="svn">
                       <arg line="update --set-depth infinity ${dirs}" />
                     </exec>
-                  </tasks>
+                  </target>
                 </configuration>
               </execution>
             </executions>