mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-09-11 13:39:32 +00:00
@@ -328,6 +328,7 @@ public class DaemonConnector {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Environment.MVND_HOME.addCommandLineOption(args, mvndHome.toString());
|
Environment.MVND_HOME.addCommandLineOption(args, mvndHome.toString());
|
||||||
|
Environment.MVND_JAVA_HOME.addCommandLineOption(args, parameters.javaHome().toString());
|
||||||
Environment.LOGBACK_CONFIGURATION_FILE
|
Environment.LOGBACK_CONFIGURATION_FILE
|
||||||
.addCommandLineOption(args, parameters.logbackConfigurationPath().toString());
|
.addCommandLineOption(args, parameters.logbackConfigurationPath().toString());
|
||||||
Environment.MVND_UID.addCommandLineOption(args, uid);
|
Environment.MVND_UID.addCommandLineOption(args, uid);
|
||||||
|
@@ -224,7 +224,12 @@ public enum Environment {
|
|||||||
/**
|
/**
|
||||||
* Internal property to tell the daemon the width of the terminal
|
* Internal property to tell the daemon the width of the terminal
|
||||||
*/
|
*/
|
||||||
MVND_TERMINAL_WIDTH("mvnd.terminalWidth", null, 0, OptionType.INTEGER, Flags.INTERNAL);
|
MVND_TERMINAL_WIDTH("mvnd.terminalWidth", null, 0, OptionType.INTEGER, Flags.INTERNAL),
|
||||||
|
/**
|
||||||
|
* Internal property to tell the daemon which JAVA_HOME was used to start it. It needs to be passed explicitly
|
||||||
|
* because the value may differ from what the daemon sees through <code>System.getProperty("java.home")</code>.
|
||||||
|
*/
|
||||||
|
MVND_JAVA_HOME("mvnd.java.home", null, null, OptionType.PATH, Flags.INTERNAL);
|
||||||
|
|
||||||
static Properties properties;
|
static Properties properties;
|
||||||
|
|
||||||
|
@@ -132,7 +132,7 @@ public class Server implements AutoCloseable, Runnable {
|
|||||||
}
|
}
|
||||||
long cur = System.currentTimeMillis();
|
long cur = System.currentTimeMillis();
|
||||||
info = new DaemonInfo(uid,
|
info = new DaemonInfo(uid,
|
||||||
Environment.JAVA_HOME.asString(),
|
Environment.MVND_JAVA_HOME.asString(),
|
||||||
Environment.MVND_HOME.asString(),
|
Environment.MVND_HOME.asString(),
|
||||||
DaemonRegistry.getProcessId(),
|
DaemonRegistry.getProcessId(),
|
||||||
socket.socket().getLocalPort(),
|
socket.socket().getLocalPort(),
|
||||||
|
Reference in New Issue
Block a user