Browse Source

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>
tags/V1_9_7_M2
Alexander Kriegisch 3 years ago
parent
commit
48a36355f6
4 changed files with 14 additions and 14 deletions
  1. 3
    3
      aspectjmatcher/pom.xml
  2. 7
    7
      aspectjtools/pom.xml
  3. 3
    3
      aspectjweaver/pom.xml
  4. 1
    1
      docs/pom.xml

+ 3
- 3
aspectjmatcher/pom.xml View File

@@ -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>

+ 7
- 7
aspectjtools/pom.xml View File

@@ -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>

+ 3
- 3
aspectjweaver/pom.xml View File

@@ -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>

+ 1
- 1
docs/pom.xml View File

@@ -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>

Loading…
Cancel
Save