Separate OSS and Commercial Init Scripts

Closes gh-323
This commit is contained in:
Josh Cummings
2024-09-16 15:48:48 -06:00
parent 0d011de91e
commit b4bf4fb5d8
2 changed files with 78 additions and 24 deletions

View File

@@ -55,29 +55,5 @@ 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/'
}
}
}