aboutsummaryrefslogtreecommitdiffstats
path: root/aspectjtools
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-29 10:07:51 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-29 10:07:51 +0700
commit48a36355f62ae2cc77f3eda7704799a4d53669d9 (patch)
tree2adaeb554b0daa343cb1871f4b3ffcb03615b542 /aspectjtools
parent5f6b3c1a068848c7a76df92c2570e6508201f51f (diff)
downloadaspectj-48a36355f62ae2cc77f3eda7704799a4d53669d9.tar.gz
aspectj-48a36355f62ae2cc77f3eda7704799a4d53669d9.zip
Bump maven-antrun-plugin from 1.6 to 3.0.0
This is not strictly necessary, but probably does not hurt either. While upgrading, '<tasks>' tags have been renamed to the new standard '<target>'. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'aspectjtools')
-rw-r--r--aspectjtools/pom.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/aspectjtools/pom.xml b/aspectjtools/pom.xml
index 88c05d24f..c566c3f73 100644
--- a/aspectjtools/pom.xml
+++ b/aspectjtools/pom.xml
@@ -41,18 +41,18 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
- <version>1.6</version>
+ <version>3.0.0</version>
<executions>
<execution>
<id>unzipasm</id>
<phase>prepare-package</phase>
<configuration>
- <tasks>
+ <target>
<echo message="unzip jarjar'd asm" />
<unzip
src="${project.basedir}/../lib/asm/asm-9.1.renamed.jar"
dest="target/asm-unzipped" />
- </tasks>
+ </target>
</configuration>
<goals>
<goal>run</goal>
@@ -63,12 +63,12 @@
<id>unzipjdt</id>
<phase>prepare-package</phase>
<configuration>
- <tasks>
+ <target>
<echo message="unzip patched jdtcore" />
<unzip
src="${project.basedir}/../org.eclipse.jdt.core/jdtcore-for-aspectj.jar"
dest="target/jdtcore-unzipped" />
- </tasks>
+ </target>
</configuration>
<goals>
<goal>run</goal>
@@ -79,12 +79,12 @@
<id>unzipjdtsrc</id>
<phase>prepare-package</phase>
<configuration>
- <tasks>
+ <target>
<echo message="unzip patched jdtcore sources" />
<unzip
src="${project.basedir}/../org.eclipse.jdt.core/jdtcore-for-aspectj-src.zip"
dest="target/jdtcore-unzipped-src" />
- </tasks>
+ </target>
</configuration>
<goals>
<goal>run</goal>