Merge branch '7.0.x'

This commit is contained in:
Robert Winch 2026-01-12 16:05:51 -06:00
commit fe138d6434
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

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
}
}
}

View File

@ -18,7 +18,7 @@ package org.springframework.security.crypto.password;
import org.jspecify.annotations.Nullable;
/**`
/**
* Service interface for encoding passwords.
*
* The preferred implementation is {@code BCryptPasswordEncoder}.