aboutsummaryrefslogtreecommitdiffstats
path: root/aspectjweaver/pom.xml
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-11 23:13:06 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-11 23:22:26 +0700
commitee5274fa7e0f82f6f840346aa969f618682dfdba (patch)
tree85a6e2537ac3c9280fef3949c3d613888230a77f /aspectjweaver/pom.xml
parent021ad3e375d1fe124906e25dbbeb7bf05874097b (diff)
downloadaspectj-ee5274fa7e0f82f6f840346aa969f618682dfdba.tar.gz
aspectj-ee5274fa7e0f82f6f840346aa969f618682dfdba.zip
Set maven-assembly-plugin version 3.1.1 explicitly for each POM module
Background: There are CI tests failing because the version is not taken from the parent POM, even if set in the 'pluginManagement' section. Instead, it is resolved via the Maven Super POM, e.g. 2.2-beta-5, see: https://maven.apache.org/ref/3.6.3/maven-model-builder/super-pom.html That assembly plugin version in turn requires plexus-archiver 1.0-alpha-12. The latter cannot be downloaded from Maven Central, leading to the problems seen during builds. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'aspectjweaver/pom.xml')
-rw-r--r--aspectjweaver/pom.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/aspectjweaver/pom.xml b/aspectjweaver/pom.xml
index 481a2a740..a8856330e 100644
--- a/aspectjweaver/pom.xml
+++ b/aspectjweaver/pom.xml
@@ -32,12 +32,12 @@
<executions>
<execution>
<id>test-jar</id>
- <phase></phase>
+ <phase>none</phase>
</execution>
</executions>
</plugin>
-
-
+
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
@@ -63,6 +63,11 @@
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
+ <!--
+ Set version manually in order to override version from super POM, e.g. 2.2-beta-5 from
+ https://maven.apache.org/ref/3.6.3/maven-model-builder/super-pom
+ -->
+ <version>3.1.1</version>
<executions>
<execution>
<id>aspectjweaver-assembly</id>