Update spring-security-ci.gradle

This commit is contained in:
Steve Riesenberg
2025-02-18 10:26:05 -06:00
parent 53e2af1da6
commit 56b4201a12

View File

@@ -55,5 +55,24 @@ allprojects {
includeVersion "org.springframework.security", "spring-security-web", "$springSecurityVersion"
}
}
maven {
name = 'artifactory-snapshot'
credentials {
username project.artifactoryUsername
password project.artifactoryPassword
}
url = 'https://usw1.packages.broadcom.com/spring-enterprise-maven-dev-local'
}
maven {
name = 'artifactory-release'
credentials {
username project.artifactoryUsername
password project.artifactoryPassword
}
content {
excludeGroup('net.minidev')
}
url = 'https://usw1.packages.broadcom.com/spring-enterprise-maven-prod-local'
}
}
}