You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/04/18 12:57:08 UTC

[commons-lang] 01/02: Use modern maven-antrun-plugin configurtation

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit 5a18bf28ac1dd2efc6719da19c8183336c9acca7
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Apr 18 08:56:31 2023 -0400

    Use modern maven-antrun-plugin configurtation
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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