Commit 8d2fa26a authored by Stephane Nicoll's avatar Stephane Nicoll

Start building against Spring LDAP 2.3.4 snapshots

See gh-26394
parent 14dd98c6
......@@ -17,6 +17,7 @@
package org.springframework.boot.build.toolchain;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.gradle.api.Plugin;
......@@ -83,9 +84,7 @@ public class ToolchainPlugin implements Plugin<Project> {
private void configureTestToolchain(Project project) {
project.getTasks().withType(Test.class, (test) -> {
// See https://github.com/spring-projects/spring-ldap/issues/570
List<String> arguments = Arrays.asList("--add-exports=java.naming/com.sun.jndi.ldap=ALL-UNNAMED",
"--illegal-access=warn");
List<String> arguments = Collections.singletonList("--illegal-access=warn");
test.jvmArgs(arguments);
});
}
......
......@@ -1679,7 +1679,7 @@ bom {
]
}
}
library("Spring LDAP", "2.3.3.RELEASE") {
library("Spring LDAP", "2.3.4.BUILD-SNAPSHOT") {
group("org.springframework.ldap") {
modules = [
"spring-ldap-core",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment