Skip to content

Commit

Permalink
Start building against Spring LDAP 2.3.4 snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed May 10, 2021
1 parent 14dd98c commit 8d2fa26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -83,9 +84,7 @@ private void configureJavaCompileToolchain(Project 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);
});
}
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 8d2fa26

Please sign in to comment.