Skip to content

Commit

Permalink
Merge branch '6.0.x' into 6.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusdacoregio committed Feb 22, 2024
2 parents 9815613 + a894c0e commit b738fa7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions spring-security-ci.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,29 @@ allprojects {
includeVersion "org.springframework.security", "spring-security-web", "$springSecurityVersion"
}
}
def hasArtifactoryUsername = project.hasProperty('artifactoryUsername')
maven {
name = 'artifactory-snapshot'
if (hasArtifactoryUsername) {
credentials {
username project.artifactoryUsername
password project.artifactoryPassword
}
}
url = 'https://repo.spring.vmware.com/artifactory/spring-commercial-snapshot-local/'
}
maven {
name = 'artifactory-release'
if (hasArtifactoryUsername) {
credentials {
username project.artifactoryUsername
password project.artifactoryPassword
}
}
content {
excludeGroup('net.minidev')
}
url = 'https://repo.spring.vmware.com/artifactory/spring-commercial-release-local/'
}
}
}

0 comments on commit b738fa7

Please sign in to comment.