From 2391cc0413b08e3f1314e90409b02d31c32e8cc8 Mon Sep 17 00:00:00 2001 From: Kai Hudalla Date: Tue, 21 Oct 2025 08:21:22 +0200 Subject: [PATCH] Init up-spec submodule during release process The Maven Release plugin does not initialize submodules by default. This change adds a configuration to the plugin to ensure that submodules are initialized during the release process. --- pom.xml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/pom.xml b/pom.xml index 70e95e6..531bf90 100644 --- a/pom.xml +++ b/pom.xml @@ -406,6 +406,38 @@ release + + org.codehaus.mojo + exec-maven-plugin + 3.6.1 + false + + + + init git submodules + initialize + + git + + submodule + update + --init + --recursive + + + + exec + + + + maven-source-plugin