mirror of
https://github.com/apache/maven-mvnd.git
synced 2026-01-13 07:04:14 +08:00
Use a proper property different from the maven-buildtime-extension one, fixes #389
This commit is contained in:
@@ -231,7 +231,11 @@ public enum Environment {
|
||||
* 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);
|
||||
MVND_JAVA_HOME("mvnd.java.home", null, null, OptionType.PATH, Flags.INTERNAL),
|
||||
/**
|
||||
* Log mojos execution time at the end of the build.
|
||||
*/
|
||||
MVND_BUILD_TIME("mvnd.buildTime", null, null, OptionType.BOOLEAN, Flags.NONE);
|
||||
|
||||
static Properties properties;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user