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
The following commit(s) were added to refs/heads/trunk by this push:
new 60eb0fb Fix clientAuth for Tomcat7RunnerCli.java (#25)
60eb0fb is described below
commit 60eb0fbbf0d762c3f809503cfa26da4fc5db2aa6
Author: eugenegoncharuk <[email protected]>
AuthorDate: Tue Jan 27 12:15:08 2026 +0200
Fix clientAuth for Tomcat7RunnerCli.java (#25)
Need to set explicit value (true) as the option doesn't have a value.
---
.../src/main/java/org/apache/tomcat/maven/runner/Tomcat7RunnerCli.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tomcat7-war-runner/src/main/java/org/apache/tomcat/maven/runner/Tomcat7RunnerCli.java
b/tomcat7-war-runner/src/main/java/org/apache/tomcat/maven/runner/Tomcat7RunnerCli.java
index 560572c..bcd768c 100644
---
a/tomcat7-war-runner/src/main/java/org/apache/tomcat/maven/runner/Tomcat7RunnerCli.java
+++
b/tomcat7-war-runner/src/main/java/org/apache/tomcat/maven/runner/Tomcat7RunnerCli.java
@@ -221,7 +221,7 @@ public class Tomcat7RunnerCli
}
if ( line.hasOption( clientAuth.getOpt() ) )
{
- tomcat7Runner.clientAuth = clientAuth.getOpt();
+ tomcat7Runner.clientAuth = "true";
}
if ( line.hasOption( keyAlias.getOpt() ) )
{
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]