Skip to content

Commit fe138d6

Browse files
committed
Merge branch '7.0.x'
2 parents 93ae52a + 7fcbf64 commit fe138d6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

buildSrc/src/main/groovy/io/spring/gradle/convention/ArtifactoryPlugin.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ class ArtifactoryPlugin implements Plugin<Project> {
8181
repository {
8282
repoKey = isSnapshot ? snapshotRepository : isMilestone ? milestoneRepository : releaseRepository
8383
if(project.hasProperty('artifactoryUsername')) {
84-
username = artifactoryUsername
85-
password = artifactoryPassword
84+
username = project.artifactoryUsername
85+
password = project.artifactoryPassword
8686
}
8787
}
8888
}

crypto/src/main/java/org/springframework/security/crypto/password/PasswordEncoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import org.jspecify.annotations.Nullable;
2020

21-
/**`
21+
/**
2222
* Service interface for encoding passwords.
2323
*
2424
* The preferred implementation is {@code BCryptPasswordEncoder}.

0 commit comments

Comments
 (0)