Skip to content

Commit c185254

Browse files
committed
add explicit dependency to satisfy gradle
1 parent bc85f71 commit c185254

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

disk-buffering/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ tasks.named<ShadowJar>("shadowJar") {
6363
mustRunAfter("jar")
6464
}
6565

66+
tasks {
67+
test {
68+
dependsOn("shadowJar")
69+
}
70+
}
71+
6672
// The javadoc from wire's generated classes has errors that make the task that generates the "javadoc" artifact to fail. This
6773
// makes the javadoc task to ignore those generated classes.
6874
tasks.withType(Javadoc::class.java) {

0 commit comments

Comments
 (0)