Files
spring-cloud-app-broker/settings.gradle
dependabot[bot] cd0db4d20a (2.3.x): Bump org.springframework.boot from 3.3.11 to 3.3.12
Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 3.3.11 to 3.3.12.
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.11...v3.3.12)

---
updated-dependencies:
- dependency-name: org.springframework.boot
  dependency-version: 3.3.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-05-23 13:11:14 -04:00

38 lines
1.1 KiB
Groovy

pluginManagement {
plugins {
id "io.spring.nohttp" version "0.0.11"
id 'org.springframework.boot' version "3.3.12"
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"