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 57c258c commit 3e369aeCopy full SHA for 3e369ae
server/build.gradle
@@ -94,7 +94,7 @@ task fixFilePermissions(type: Exec) {
94
}
95
96
task debugRun(type: JavaExec) {
97
- main = mainClassName
+ mainClass = mainClassName
98
classpath sourceSets.main.runtimeClasspath
99
standardInput = System.in
100
@@ -106,7 +106,7 @@ task debugRun(type: JavaExec) {
106
107
task debugStartScripts(type: CreateStartScripts) {
108
applicationName = startScripts.applicationName
109
- mainClassName = startScripts.mainClassName
+ mainClass = startScripts.mainClass
110
outputDir = installDist.destinationDir.toPath().resolve('bin').toFile()
111
classpath = startScripts.classpath
112
defaultJvmOpts = [debugArgs]
0 commit comments