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.
This commit is contained in:
Andy Wilkinson
2024-09-30 11:08:17 +01:00
parent e66e1078de
commit 10ade82fc8

View File

@@ -19,18 +19,6 @@ plugins {
rootProject.name = "spring-restdocs"
settings.gradle.projectsLoaded {
develocity {
buildScan {
settings.gradle.rootProject.getBuildDir().mkdirs()
new File(settings.gradle.rootProject.getBuildDir(), "build-scan-uri.txt").text = "build scan not generated"
buildScanPublished { scan ->
new File(settings.gradle.rootProject.getBuildDir(), "build-scan-uri.txt").text = "<${scan.buildScanUri}|build scan>\n"
}
}
}
}
include "docs"
include "spring-restdocs-asciidoctor"
include "spring-restdocs-bom"