Browse Source

Unzip dependencies in phase 'prepare-package' before building assemblies

Before it was phase 'validate', which was way too early and somewhat
annoying and time-consuming when during development we just call
validate in order to check if the POMs are valid, as the name implies.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_7_M2
Alexander Kriegisch 3 years ago
parent
commit
f8eb13d524
3 changed files with 5 additions and 5 deletions
  1. 1
    1
      aspectjmatcher/pom.xml
  2. 3
    3
      aspectjtools/pom.xml
  3. 1
    1
      aspectjweaver/pom.xml

+ 1
- 1
aspectjmatcher/pom.xml View File

@@ -38,7 +38,7 @@
<executions>
<execution>
<id>unzipasm</id>
<phase>validate</phase>
<phase>prepare-package</phase>
<configuration>
<tasks>
<echo message="unzip jarjar'd asm" />

+ 3
- 3
aspectjtools/pom.xml View File

@@ -45,7 +45,7 @@
<executions>
<execution>
<id>unzipasm</id>
<phase>validate</phase>
<phase>prepare-package</phase>
<configuration>
<tasks>
<echo message="unzip jarjar'd asm" />
@@ -61,7 +61,7 @@

<execution>
<id>unzipjdt</id>
<phase>validate</phase>
<phase>prepare-package</phase>
<configuration>
<tasks>
<echo message="unzip patched jdtcore" />
@@ -77,7 +77,7 @@

<execution>
<id>unzipjdtsrc</id>
<phase>validate</phase>
<phase>prepare-package</phase>
<configuration>
<tasks>
<echo message="unzip patched jdtcore sources" />

+ 1
- 1
aspectjweaver/pom.xml View File

@@ -45,7 +45,7 @@
<executions>
<execution>
<id>unzipasm</id>
<phase>validate</phase>
<phase>prepare-package</phase>
<configuration>
<tasks>
<echo message="unzip jarjar'd asm" />

Loading…
Cancel
Save