Skip to content
Snippets Groups Projects

Remove transitivity for devtools dependency

1 file
+ 4
3
Compare changes
  • Side-by-side
  • Inline
+ 4
3
@@ -215,10 +215,11 @@ val generatePom by tasks.register("generatePom", DefaultTask::class) {
}
dependencies {
// Generic Spring Boot starter dependencies
implementation("org.springframework.boot", "spring-boot-devtools", springBootVersion)
implementation("org.springframework.boot", "spring-boot-starter", springBootVersion)
compileOnly("org.springframework.boot", "spring-boot-devtools", springBootVersion)
implementation("org.springframework.boot", "spring-boot-starter", springBootVersion) {
exclude("org.springframework.boot", "spring-boot-devtools")
}
implementation("org.springframework.boot", "spring-boot-starter-data-jpa", springBootVersion)
implementation("org.springframework.boot", "spring-boot-starter-data-rest", springBootVersion)
implementation("org.springframework.boot", "spring-boot-starter-web", springBootVersion)
Loading