We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93fee3d commit 6a088e6Copy full SHA for 6a088e6
functions/helloworld/helloworld-gradle/build.gradle
@@ -52,8 +52,8 @@ tasks.register("runFunction", JavaExec) {
52
classpath(configurations.invoker)
53
inputs.files(configurations.runtimeClasspath, sourceSets.main.output)
54
args(
55
- '--target', project.findProperty('runFunction.target') ?: '',
56
- '--port', project.findProperty('runFunction.port') ?: 8080
+ '--target', project.findProperty('run.functionTarget') ?: '',
+ '--port', project.findProperty('run.port') ?: 8080
57
)
58
doFirst {
59
args('--classpath', files(configurations.runtimeClasspath, sourceSets.main.output).asPath)
0 commit comments