Skip to content

Commit

Permalink
More attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingela committed Oct 24, 2024
1 parent abfefcf commit 57fcc96
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 15 deletions.
5 changes: 0 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,6 @@ subprojects {
xml.required = true
html.required = true
}

// Add specific dependencies for tasks that weren't covered
dependsOn "compileKotlin"
dependsOn "processTestResources"
dependsOn "test"
}

test {
Expand Down
8 changes: 0 additions & 8 deletions modules/admin-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,3 @@ dependencies {

testApi project(":test-tools")
}

testCoverage {
mustRunAfter(":block:compileTestKotlin")
mustRunAfter(":block:test")
mustRunAfter(":tutorial:compileKotlin")
mustRunAfter(":tutorial:test")
mustRunAfter(":test")
}
2 changes: 0 additions & 2 deletions modules/block/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,4 @@ dependencies {

testCoverage {
mustRunAfter(":admin-client:testCoverage")
mustRunAfter(":client:testCoverage")
mustRunAfter(":codegen:testCoverage")
}
1 change: 1 addition & 0 deletions modules/client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ dependencies {

testCoverage {
mustRunAfter(":admin-client:testCoverage")
mustRunAfter(":block:testCoverage")
}
1 change: 1 addition & 0 deletions modules/codegen/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ task generate(type: JavaExec) {

testCoverage {
mustRunAfter(":admin-client:testCoverage")
mustRunAfter(":block:testCoverage")
mustRunAfter(":client:testCoverage")
}

0 comments on commit 57fcc96

Please sign in to comment.