39 lines
1.1 KiB
Groovy
39 lines
1.1 KiB
Groovy
pluginManagement {
|
|
plugins {
|
|
id "io.spring.nohttp" version "0.0.11"
|
|
id 'org.springframework.boot' version "3.0.2"
|
|
id 'org.asciidoctor.jvm.pdf' version '3.3.2'
|
|
id 'org.asciidoctor.jvm.convert' version '3.3.2'
|
|
}
|
|
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-security-credhub"
|
|
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"
|