In my build.gradle.kts
I have multiple libraries that are released simultaneously with the same version and must be kept that way. How do I make Github's Dependabot to update version of all of them at once, if it has detected that version change on one of the libraries?
Example:
// these all must have the same version
kapt("io.javalin.community.openapi:openapi-annotation-processor:5.3.2")
api("io.javalin.community.openapi:javalin-openapi-plugin:5.3.2")
api("io.javalin.community.openapi:javalin-swagger-plugin:5.3.2")
api("io.javalin.community.openapi:javalin-redoc-plugin:5.3.2")
So far I have no idea how to achieve this.