Skip to content

Commit

Permalink
Workaround for implicit dependency on ":jar" from ":compileTestJava" …
Browse files Browse the repository at this point in the history
…and ":checkstyleTest"
  • Loading branch information
dmikurube committed Apr 25, 2024
1 parent 526b783 commit 4e6cf74
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -209,3 +209,15 @@ checkstyle {
ignoreFailures = false
maxWarnings = 0 // https://github.com/gradle/gradle/issues/881
}

// Task ":compileTestJava" somehow uses this output of task ":jar" without declaring an explicit or implicit dependency.
// TODO: Find the implicit dependency, and remove it.
compileTestJava {
dependsOn ":jar"
}

// Task ":checkstyleTest" somehow uses this output of task ":jar" without declaring an explicit or implicit dependency.
// TODO: Find the implicit dependency, and remove it.
checkstyleTest {
dependsOn ":jar"
}

0 comments on commit 4e6cf74

Please sign in to comment.