Skip to content

Commit b4168e4

Browse files
fix(gradle): jarFileTest caching
This was simply a call to project.file which has no effect on this task. The inputs prefix was not added when this was added with commit: b5331f4
1 parent 7a9d09b commit b4168e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ task jarFileTest(type: Test) {
3333
testClassesDirs = sourceSets.jarFileTest.output.classesDirs
3434
classpath = sourceSets.jarFileTest.runtimeClasspath
3535

36-
file(shadowJar.outputs.files.singleFile) // input for correct caching
36+
inputs.file(shadowJar.outputs.files.singleFile) // input for correct caching
3737
systemProperty("jarFile", shadowJar.outputs.files.singleFile)
3838

3939
dependsOn(shadowJar)

0 commit comments

Comments
 (0)