Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 3.4.3 to 3.4.4. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.4.3...v3.4.4) --- updated-dependencies: - dependency-name: org.springframework.boot dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
39 lines
1.1 KiB
Groovy
39 lines
1.1 KiB
Groovy
pluginManagement {
|
|
plugins {
|
|
id "io.spring.nohttp" version "0.0.11"
|
|
id "io.spring.javaformat" version "0.0.43"
|
|
id 'org.springframework.boot' version "3.4.4"
|
|
id 'org.asciidoctor.jvm.pdf' version '4.0.4'
|
|
id 'org.asciidoctor.jvm.convert' version '4.0.4'
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
if (version =~ /((-M|-RC)[0-9]+|-SNAPSHOT)$/) {
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
}
|
|
if (version.endsWith('-SNAPSHOT')) {
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "spring-cloud-app-broker"
|
|
|
|
include "spring-cloud-app-broker-deployer"
|
|
include "spring-cloud-app-broker-deployer-cloudfoundry"
|
|
include "spring-cloud-app-broker-docs"
|
|
include "spring-cloud-app-broker-core"
|
|
include "spring-cloud-app-broker-autoconfigure"
|
|
include "spring-cloud-app-broker-integration-tests"
|
|
include "spring-cloud-app-broker-acceptance-tests"
|
|
include "spring-cloud-app-broker-logging"
|
|
include "spring-cloud-starter-app-broker"
|
|
include "spring-cloud-starter-app-broker-cloudfoundry"
|
|
include "spring-cloud-starter-app-broker-logging"
|