We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4190620 commit 73cb354Copy full SHA for 73cb354
build.gradle
@@ -68,10 +68,12 @@ checkstyle {
68
maxWarnings 0
69
}
70
71
-applicationDefaultJvmArgs = ['-Dlog4j.configurationFile=%APP_HOME%/config/log4j2.xml']
72
-startScripts.doLast {
73
- unixScript.text = unixScript.text.replace('%APP_HOME%', '$APP_HOME')
74
- windowsScript.text = windowsScript.text.replace('%%APP_HOME%%', '%APP_HOME%')
+startScripts {
+ defaultJvmOpts = ['-Dlog4j.configurationFile=%APP_HOME%/config/log4j2.xml']
+ doLast {
+ unixScript.text = unixScript.text.replace('%APP_HOME%', '$APP_HOME')
75
+ windowsScript.text = windowsScript.text.replace('%%APP_HOME%%', '%APP_HOME%')
76
+ }
77
78
79
distributions {
0 commit comments