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 /aspectjweaver | |
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>
Diffstat (limited to 'aspectjweaver')
-rw-r--r-- | aspectjweaver/pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
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" /> |