I have a maven bom. This bom is used in build.gradle. I want to add a spring boot version to this bom.
How can I do it?
build.gradle uses
buildscript {
…
dependencies {
classpath(“org.springframework.boot:spring-boot-gradle-plugin:2.1.10”)
}
…
}
Can I use a gradle plugin from bom or smth like that way?