This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch jakartaee-api-9.1.x in repository https://gitbox.apache.org/repos/asf/tomee-jakartaee-api.git
commit 0be7e34e7079529bc75c0f25e7c5b75a5b5b29c8 Author: Richard Zowalla <[email protected]> AuthorDate: Tue May 16 21:27:28 2023 +0200 Enhances release plugin config --- pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pom.xml b/pom.xml index 6171942..381be39 100644 --- a/pom.xml +++ b/pom.xml @@ -112,6 +112,20 @@ </resource> </resources> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.5.3</version> + <configuration> + <!-- the following settings are important when working with git --> + <localCheckout>true</localCheckout> + <pushChanges>false</pushChanges> + <releaseProfiles /> + <autoVersionSubmodules>true</autoVersionSubmodules> + <arguments>-DskipTests -DfailIfNoTests=false -Dadditionalparam=-Xdoclint:none -DadditionalJOption=-Xdoclint:none ${arguments}</arguments> + </configuration> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId>
