This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/tomcat-maven-plugin.git
commit be1c5afa463be80e738bf749e065f8259f4b16bc Author: Mark Thomas <[email protected]> AuthorDate: Tue Jan 27 10:15:45 2026 +0000 Fix clientAuth CLI option for 8.0.x as well --- .../src/main/java/org/apache/tomcat/maven/runner/Tomcat8RunnerCli.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tomcat8-war-runner/src/main/java/org/apache/tomcat/maven/runner/Tomcat8RunnerCli.java b/tomcat8-war-runner/src/main/java/org/apache/tomcat/maven/runner/Tomcat8RunnerCli.java index 527e8fa..86eb40e 100644 --- a/tomcat8-war-runner/src/main/java/org/apache/tomcat/maven/runner/Tomcat8RunnerCli.java +++ b/tomcat8-war-runner/src/main/java/org/apache/tomcat/maven/runner/Tomcat8RunnerCli.java @@ -207,7 +207,7 @@ public class Tomcat8RunnerCli } if ( line.hasOption( clientAuth.getOpt() ) ) { - tomcat8Runner.clientAuth = clientAuth.getOpt(); + tomcat8Runner.clientAuth = "true"; } if ( line.hasOption( keyAlias.getOpt() ) ) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
