File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
buildSrc/src/main/java/org/springframework/boot/build/toolchain
spring-boot-project/spring-boot-dependencies Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1717package org .springframework .boot .build .toolchain ;
1818
1919import java .util .Arrays ;
20+ import java .util .Collections ;
2021import java .util .List ;
2122
2223import org .gradle .api .Plugin ;
@@ -83,9 +84,7 @@ private void configureJavaCompileToolchain(Project project) {
8384
8485 private void configureTestToolchain (Project project ) {
8586 project .getTasks ().withType (Test .class , (test ) -> {
86- // See https://github.com/spring-projects/spring-ldap/issues/570
87- List <String > arguments = Arrays .asList ("--add-exports=java.naming/com.sun.jndi.ldap=ALL-UNNAMED" ,
88- "--illegal-access=warn" );
87+ List <String > arguments = Collections .singletonList ("--illegal-access=warn" );
8988 test .jvmArgs (arguments );
9089 });
9190 }
Original file line number Diff line number Diff line change @@ -1679,7 +1679,7 @@ bom {
16791679 ]
16801680 }
16811681 }
1682- library(" Spring LDAP" , " 2.3.3.RELEASE " ) {
1682+ library(" Spring LDAP" , " 2.3.4.BUILD-SNAPSHOT " ) {
16831683 group(" org.springframework.ldap" ) {
16841684 modules = [
16851685 " spring-ldap-core" ,
You can’t perform that action at this time.
0 commit comments