Files
spring-restdocs/settings.gradle
Andy Wilkinson 10ade82fc8 Remove code that writes build scan URI to a file
It was used by Concourse but is no longer needed after the move to
GitHub Actions.
2024-09-30 11:08:17 +01:00

30 lines
690 B
Groovy

pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven { url 'https://repo.spring.io/snapshot' }
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "io.spring.javaformat") {
useModule "io.spring.javaformat:spring-javaformat-gradle-plugin:${requested.version}"
}
}
}
}
plugins {
id "io.spring.develocity.conventions" version "0.0.21"
}
rootProject.name = "spring-restdocs"
include "docs"
include "spring-restdocs-asciidoctor"
include "spring-restdocs-bom"
include "spring-restdocs-core"
include "spring-restdocs-mockmvc"
include "spring-restdocs-platform"
include "spring-restdocs-restassured"
include "spring-restdocs-webtestclient"