diff --git a/WebConsoleOSGiTest/build.gradle b/WebConsoleOSGiTest/build.gradle index 0617da3d..6993b953 100644 --- a/WebConsoleOSGiTest/build.gradle +++ b/WebConsoleOSGiTest/build.gradle @@ -52,7 +52,7 @@ task run(type: JavaExec) { dependsOn createRunRepo classpath = configurations.bndCli - main = 'aQute.bnd.main.bnd' + mainClass = 'aQute.bnd.main.bnd' args = ['WebConsoleOSGiDemo.bndrun'] standardInput = System.in } @@ -62,7 +62,7 @@ task runGoGo(type: JavaExec) { dependsOn createRunRepo classpath = configurations.bndCli - main = 'aQute.bnd.main.bnd' + mainClass = 'aQute.bnd.main.bnd' args = ['gogo.bndrun'] standardInput = System.in } @@ -72,7 +72,7 @@ task runRepoList(type: JavaExec) { dependsOn createRunRepo classpath = configurations.bndCli - main = 'aQute.bnd.main.bnd' + mainClass = 'aQute.bnd.main.bnd' args = ['repo', 'list'] standardInput = System.in }