Browse Source

Remove spring-security-crypto from spring-core pom

Instead of having api extend included configuration, we should use the
*Classpath configurations.

Closes gh-9767
pull/9881/head
Rob Winch 5 years ago
parent
commit
95132d9fe3
  1. 9
      core/spring-security-core.gradle

9
core/spring-security-core.gradle

@ -5,8 +5,13 @@ apply plugin: 'io.spring.convention.spring-module' @@ -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 {

Loading…
Cancel
Save