Use project.artifactory(Username|Password)

This commit is contained in:
Robert Winch 2026-01-12 16:05:38 -06:00
parent a32d9f04e3
commit 7fcbf642b8
No known key found for this signature in database

View File

@ -81,8 +81,8 @@ class ArtifactoryPlugin implements Plugin<Project> {
repository {
repoKey = isSnapshot ? snapshotRepository : isMilestone ? milestoneRepository : releaseRepository
if(project.hasProperty('artifactoryUsername')) {
username = artifactoryUsername
password = artifactoryPassword
username = project.artifactoryUsername
password = project.artifactoryPassword
}
}
}