Skip to content

Commit

Permalink
Remove spring-security-crypto from spring-core pom
Browse files Browse the repository at this point in the history
Instead of having api extend included configuration, we should use the
*Classpath configurations.

Closes spring-projectsgh-9767
  • Loading branch information
rwinch authored and Ayush Kohli committed Aug 25, 2021
1 parent 69713d0 commit 9b0dcec
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions core/spring-security-core.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ apply plugin: 'io.spring.convention.spring-module'
def includeProject = project(':spring-security-crypto')

configurations {
included
api.extendsFrom included
included {
visible = false
transitive = false
}
compileClasspath.extendsFrom included
testCompileClasspath.extendsFrom included
testRuntimeClasspath.extendsFrom included
}

dependencies {
Expand Down

0 comments on commit 9b0dcec

Please sign in to comment.