This commit aligns dependency versions used across different samples application by leveraging Spring Boot's BOM, rather than manually managing dependency versions for samples that are not Spring Boot based.
16 lines
455 B
Groovy
16 lines
455 B
Groovy
dependencyManagement {
|
|
imports {
|
|
mavenBom "org.springframework.boot:spring-boot-dependencies:$springBootVersion"
|
|
}
|
|
|
|
dependencies {
|
|
dependency 'com.maxmind.geoip2:geoip2:2.16.1'
|
|
dependency 'org.webjars:bootstrap:2.3.2'
|
|
dependency 'org.webjars:html5shiv:3.7.3-1'
|
|
dependency 'org.webjars:jquery:3.6.0'
|
|
dependency 'org.webjars:knockout:3.5.1'
|
|
dependency 'org.webjars:sockjs-client:1.5.1'
|
|
dependency 'org.webjars:stomp-websocket:2.3.4'
|
|
}
|
|
}
|