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
This commit is contained in:
abilan
2023-06-22 17:11:56 -04:00
parent 197a58af5d
commit a9285c3c2c

View File

@@ -257,6 +257,8 @@ configure(javaProjects) { subproject ->
}
}
testImplementation "org.assertj:assertj-core:$assertjVersion"
// JSR-305 only used for non-required meta-annotations
compileOnly "com.google.code.findbugs:annotations:$findbugsVersion"
testImplementation "com.google.code.findbugs:annotations:$findbugsVersion"