Skip to content

Commit a101276

Browse files
authored
fix(gradle): Change outputs directory of runSbg
It's better to be "com/tns/gen" because otherwise it includes all the source code of the project -- not only the java files generated by the SBG
1 parent bce8394 commit a101276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-app/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ task runSbg(type: JavaExec) {
427427
dependsOn ':static-binding-generator:jar'
428428
}
429429

430-
outputs.dir(OUTPUT_JAVA_DIR)
430+
outputs.dir("$OUTPUT_JAVA_DIR/com/tns/gen")
431431
inputs.dir(INPUT_JS_DIR)
432432
inputs.dir(extractedDependenciesDir)
433433

0 commit comments

Comments
 (0)