Files
spring-ldap-samples/spring-ldap-ci.gradle
2024-10-07 12:07:20 -06:00

23 lines
531 B
Groovy

allprojects {
configurations.all {
resolutionStrategy {
force "org.springframework.ldap:spring-ldap-core:$springLdapVersion"
force "org.springframework.ldap:spring-ldap-test:$springLdapVersion"
}
}
repositories {
exclusiveContent {
forRepository {
maven {
url "file://$localRepositoryPath"
}
}
filter {
includeVersion "org.springframework.ldap", "spring-ldap-core", "$springLdapVersion"
includeVersion "org.springframework.ldap", "spring-ldap-test", "$springLdapVersion"
}
}
}
}