Skip to content

Commit a9285c3

Browse files
committed
Use assertj dep for test scope explicitly
Looks like something is overriding `assertj-core` version from `3.24.2 -> 3.11.1` which doesn't have an API we use. * Adding `testImplementation "org.assertj:assertj-core:$assertjVersion"` explicitly instead of transitive from the `spring-integration-test-support` fixes the problem
1 parent 197a58a commit a9285c3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,8 @@ configure(javaProjects) { subproject ->
257257
}
258258
}
259259

260+
testImplementation "org.assertj:assertj-core:$assertjVersion"
261+
260262
// JSR-305 only used for non-required meta-annotations
261263
compileOnly "com.google.code.findbugs:annotations:$findbugsVersion"
262264
testImplementation "com.google.code.findbugs:annotations:$findbugsVersion"

0 commit comments

Comments
 (0)