This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git
The following commit(s) were added to refs/heads/master by this push:
new 5d5fb2fc fix(log-typo): Fix minor typo in javaHomeFromPath warn log
(#856)
5d5fb2fc is described below
commit 5d5fb2fc62100cf370aefb033d39409f41fae083
Author: Florian LOPES <[email protected]>
AuthorDate: Fri Jun 16 11:18:13 2023 +0200
fix(log-typo): Fix minor typo in javaHomeFromPath warn log (#856)
---
client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java
b/client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java
index 716ee4a7..d09dc720 100644
--- a/client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java
+++ b/client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java
@@ -174,7 +174,7 @@ public class DaemonParameters {
private static String javaHomeFromPath() {
LOG.warn(
"Falling back to finding JAVA_HOME by running java executable
available in PATH."
- + " You may want to avoid this time consumig task by
setting JAVA_HOME environment variable"
+ + " You may want to avoid this time consuming task by
setting JAVA_HOME environment variable"
+ " or by passing java.home system property through
command line or in one of mvnd configuration files.");
final String jHome = OsUtils.findJavaHomeFromJavaExecutable("java");
if (null != jHome) {