diff options
-rw-r--r-- | aspectjmatcher/pom.xml | 6 | ||||
-rw-r--r-- | aspectjtools/pom.xml | 14 | ||||
-rw-r--r-- | aspectjweaver/pom.xml | 6 | ||||
-rw-r--r-- | docs/pom.xml | 2 |
4 files changed, 14 insertions, 14 deletions
diff --git a/aspectjmatcher/pom.xml b/aspectjmatcher/pom.xml index 20a7da48b..a910dc3df 100644 --- a/aspectjmatcher/pom.xml +++ b/aspectjmatcher/pom.xml @@ -34,18 +34,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> 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> diff --git a/aspectjweaver/pom.xml b/aspectjweaver/pom.xml index 78ac055c6..386345c13 100644 --- a/aspectjweaver/pom.xml +++ b/aspectjweaver/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> diff --git a/docs/pom.xml b/docs/pom.xml index 5ab312309..884a23b5c 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -143,7 +143,7 @@ <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> - <version>1.7</version> + <version>3.0.0</version> <executions> <execution> <id>make-docs</id> |