Files
spring-cloud-contract/samples/standalone/webclient/http-server/settings.gradle
Marcin Grzejszczak 2a40e5fb60 Fixed the build
2019-10-07 15:03:57 +02:00

27 lines
701 B
Groovy

pluginManagement {
plugins {
id 'org.springframework.boot'
id "org.springframework.cloud.contract" version "${verifierVersion}"
id "io.spring.dependency-management" version "1.0.8.RELEASE"
}
repositories {
// to pick from local .m2
mavenLocal()
// for snapshots
maven { url "https://repo.spring.io/libs-snapshot-local" }
// for milestones
maven { url "https://repo.spring.io/libs-milestone-local" }
// for GA versions
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == 'org.springframework.boot') {
useModule("org.springframework.boot:spring-boot-gradle-plugin:${bootVersion}")
}
}
}
}
rootProject.name = 'http-server-webclient'