Bumps [io.spring.javaformat](https://github.com/spring-io/spring-javaformat) from 0.0.45 to 0.0.46. - [Release notes](https://github.com/spring-io/spring-javaformat/releases) - [Commits](https://github.com/spring-io/spring-javaformat/compare/v0.0.45...v0.0.46) --- updated-dependencies: - dependency-name: io.spring.javaformat dependency-version: 0.0.46 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
45 lines
1.3 KiB
Groovy
45 lines
1.3 KiB
Groovy
pluginManagement {
|
|
plugins {
|
|
id "io.spring.nohttp" version "0.0.11"
|
|
id "io.spring.javaformat" version "0.0.46"
|
|
id 'org.springframework.boot' version "3.5.0"
|
|
id 'org.asciidoctor.jvm.pdf' version '4.0.4'
|
|
id 'org.asciidoctor.jvm.convert' version '4.0.4'
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
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" }
|
|
}
|
|
}
|
|
}
|
|
|
|
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"
|