This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch release-4.0.0-M1-RC1 in repository https://gitbox.apache.org/repos/asf/causeway.git
commit 2ecaab7a1d5e9725c1565e234d8dc1940cdb0ac3 Author: Dan Haywood <[email protected]> AuthorDate: Thu Oct 9 09:20:42 2025 +0100 adds source plugin to top-level aggregator --- pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pom.xml b/pom.xml index 1bb832b7dd9..10ed024a7d7 100644 --- a/pom.xml +++ b/pom.xml @@ -204,6 +204,18 @@ don't consider error --> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> </profile>
