Merge branch '6.1.x'

This commit is contained in:
Steve Riesenberg 2023-12-05 13:36:55 -06:00
commit 674ce38bd3
No known key found for this signature in database
GPG Key ID: 3D0169B18AB8F0A9
1 changed files with 5 additions and 1 deletions

View File

@ -21,6 +21,10 @@ import org.gradle.api.publish.maven.plugins.MavenPublishPlugin
class ArtifactoryPlugin implements Plugin<Project> {
private static final String ARTIFACTORY_URL_NAME = "ARTIFACTORY_URL"
private static final String DEFAULT_ARTIFACTORY_URL = "https://repo.spring.io"
@Override
void apply(Project project) {
project.plugins.apply('com.jfrog.artifactory')
@ -28,7 +32,7 @@ class ArtifactoryPlugin implements Plugin<Project> {
boolean isSnapshot = Utils.isSnapshot(project);
boolean isMilestone = Utils.isMilestone(project);
project.artifactory {
contextUrl = 'https://repo.spring.io'
contextUrl = System.getenv().getOrDefault(ARTIFACTORY_URL_NAME, DEFAULT_ARTIFACTORY_URL)
publish {
repository {
repoKey = isSnapshot ? 'libs-snapshot-local' : isMilestone ? 'libs-milestone-local' : 'libs-release-local'