-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Description
I figured that the number of Mockito artifacts grows, so it might be useful to provide a BOM (Bill Of Materials) that lists all versions of all artifacts in a central place.
Such a thing could then be consumed in a Gradle multi project build through
// my.platform.project:test
plugins {
id("java-platform")
}
dependencies {
api(platform("org.mockito:mockito-bom:$someVersion"))
}
and this could be referenced in individual module files like so:
dependencies {
testImplementation(platform("my.platform.project:test"))
testImplementation("org.mockito:mockito-core")
testImplementation("org.mockito:mockito-junit-jupiter")
}
Creating and publishing such a BOM should be fairly easy. Thanks!
remal, rkraneis, bjmi and matpag
Metadata
Metadata
Assignees
Labels
No labels