Skip to content

Commit

Permalink
PLUGINAPI-112 add missing dependency declaration between tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-marion-sonarsource committed Dec 10, 2024
1 parent e0c436d commit decceab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions plugin-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ publishing {
}

test {
dependsOn ':plugin-api:shadowJar'
// Enabling the JUnit Platform (see https://github.com/junit-team/junit5-samples/tree/master/junit5-migration-gradle)
useJUnitPlatform()
}
10 changes: 6 additions & 4 deletions test-fixtures/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ publishing {
artifact javadocJar
}
}
test {
// Enabling the JUnit Platform (see https://github.com/junit-team/junit5-samples/tree/master/junit5-migration-gradle)
useJUnitPlatform()
}
}

test {
dependsOn ':plugin-api:shadowJar'
// Enabling the JUnit Platform (see https://github.com/junit-team/junit5-samples/tree/master/junit5-migration-gradle)
useJUnitPlatform()
}

0 comments on commit decceab

Please sign in to comment.