This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/master by this push:
new c0bf5c0d72 CAUSEWAY-2445: try to fix nightly build (2)
c0bf5c0d72 is described below
commit c0bf5c0d728bb73be4c4524d7ec6537eee869a3b
Author: Andi Huber <[email protected]>
AuthorDate: Wed May 24 07:53:10 2023 +0200
CAUSEWAY-2445: try to fix nightly build (2)
- maven-source-plugin 3.3.0 is more strict now, does not allow package
duplicates
-
https://github.com/apache/maven-source-plugin/commit/c20e142cc40151c3060b54878cf21537719b2e63
---
bom/pom.xml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/bom/pom.xml b/bom/pom.xml
index 49951dab50..e16b7e6dd0 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -2390,16 +2390,18 @@ It is therefore a copy of org.apache:apache, with
customisations clearly identif
<!-- goal:aggregate (for aggregator
modules) binds to phase:package -->
<!-- goal:jar and goal:test-jar are
meant to bind to phase:package,
but doesn't seem to so bound
explicitly -->
+ <!-- failing since maven-source-plugin
3.3.0 (as duplicated with built-in goal 'jar-no-fork')
<executions>
<execution>
<id>package-jars</id>
- <!--
<phase>package</phase> failing since maven-source-plugin 3.3.0 -->
+ <phase>package</phase>
<goals>
<goal>jar</goal>
- <!--
<goal>test-jar</goal> failing since maven-source-plugin 3.3.0 -->
+
<goal>test-jar</goal>
</goals>
</execution>
</executions>
+ -->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>