Prepare for automated validation scripts

See https://github.com/gradle/gradle-enterprise-build-validation-scripts/blob/main/Gradle.md

Issue gh-1231
This commit is contained in:
Steve Riesenberg
2023-05-25 13:48:26 -05:00
parent 26ff4dad90
commit ece9f10fe8
2 changed files with 4 additions and 2 deletions

View File

@@ -5,4 +5,5 @@
^http://lists.webappsec.org/.*
^http://webblaze.cs.berkeley.edu/.*
^http://www.w3.org/2000/09/xmldsig.*
^http://www.gnu.org/.*
^http://www.gnu.org/.*
^http://www.apache.org/licenses/.*

View File

@@ -9,6 +9,7 @@ pluginManagement {
plugins {
id "com.gradle.enterprise" version "3.13.3"
id "io.spring.ge.conventions" version "0.0.13"
id "com.gradle.common-custom-user-data-gradle-plugin" version "1.10"
}
dependencyResolutionManagement {
@@ -22,7 +23,7 @@ rootProject.name = "spring-authorization-server"
def buildFiles = fileTree(rootDir) {
def excludes = gradle.startParameter.projectProperties.get("excludeProjects")?.split(",")
include "**/*.gradle", "**/*.gradle.kts"
exclude "build", "**/gradle", "settings.gradle", "buildSrc", "/build.gradle", ".*", "out"
exclude "build", "**/gradle", "settings.gradle", "buildSrc", "/build.gradle", "gradle-*", ".*", "out"
if (excludes) {
exclude excludes
}