This is an automated email from the ASF dual-hosted git repository. markt-asf pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat-jakartaee-migration.git
commit 7c957e0bdbcbe176eed959033fd76798d30bcb5b Author: Mark Thomas <[email protected]> AuthorDate: Mon Jun 1 07:16:43 2026 +0100 Add the Maven Wrapper Plugin to manage the wrapper --- CHANGES.md | 3 +++ pom.xml | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 529eea0..eb4e296 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Tomcat Migration Tool for Jakarta EE - Changelog +## 1.0.12 +- Add Maven Wrapper Plugin to manage the Maven wrapper. (markt) + ## 1.0.11 - Update Eclipse OSGI to 3.23.200. (dependabot/remm) - [#108](https://github.com/apache/tomcat-jakartaee-migration/issues/108) possible array exception when using the CLI. (remm) diff --git a/pom.xml b/pom.xml index af03ce9..dbc6ec2 100644 --- a/pom.xml +++ b/pom.xml @@ -145,6 +145,11 @@ </resources> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-wrapper-plugin</artifactId> + <version>3.3.4</version> + </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
