diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-03-28 09:02:08 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-03-28 09:02:08 +0700 |
commit | f8eb13d524bfd44f5275938f083169d79268bb41 (patch) | |
tree | 0bfc683006fc0e8af326ecbc788d18a48689858f | |
parent | 918063dba17c4920662dc14542efc3b184d933a5 (diff) | |
download | aspectj-f8eb13d524bfd44f5275938f083169d79268bb41.tar.gz aspectj-f8eb13d524bfd44f5275938f083169d79268bb41.zip |
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>
-rw-r--r-- | aspectjmatcher/pom.xml | 2 | ||||
-rw-r--r-- | aspectjtools/pom.xml | 6 | ||||
-rw-r--r-- | aspectjweaver/pom.xml | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/aspectjmatcher/pom.xml b/aspectjmatcher/pom.xml index a81ca7a9d..20a7da48b 100644 --- a/aspectjmatcher/pom.xml +++ b/aspectjmatcher/pom.xml @@ -38,7 +38,7 @@ <executions> <execution> <id>unzipasm</id> - <phase>validate</phase> + <phase>prepare-package</phase> <configuration> <tasks> <echo message="unzip jarjar'd asm" /> diff --git a/aspectjtools/pom.xml b/aspectjtools/pom.xml index 7fa02377f..88c05d24f 100644 --- a/aspectjtools/pom.xml +++ b/aspectjtools/pom.xml @@ -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" /> diff --git a/aspectjweaver/pom.xml b/aspectjweaver/pom.xml index 99e98a773..78ac055c6 100644 --- a/aspectjweaver/pom.xml +++ b/aspectjweaver/pom.xml @@ -45,7 +45,7 @@ <executions> <execution> <id>unzipasm</id> - <phase>validate</phase> + <phase>prepare-package</phase> <configuration> <tasks> <echo message="unzip jarjar'd asm" /> |