From 05a3b9bbebe51b5ee7363743b0dcaca5b5f4139a Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 10 May 2021 09:01:56 +0200 Subject: [PATCH 1/5] Start building against Spring Data 2020.0.9 snapshots See gh-26381 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 97dabe7d48..dab6921795 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1558,7 +1558,7 @@ bom { ] } } - library("Spring Data Bom", "2020.0.8") { + library("Spring Data Bom", "2020.0.9-SNAPSHOT") { group("org.springframework.data") { imports = [ "spring-data-bom" From 2479f69db10e74238d3ed44fe5d0565feef817cc Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 10 May 2021 09:02:27 +0200 Subject: [PATCH 2/5] Start building against Spring AMQP 2.3.7 snapshots See gh-26383 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index dab6921795..566c9a4fe9 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1538,7 +1538,7 @@ bom { ] } } - library("Spring AMQP", "2.3.6") { + library("Spring AMQP", "2.3.7-SNAPSHOT") { group("org.springframework.amqp") { modules = [ "spring-amqp", From 618475887c5a8321af4d1fbee710b086252c7dcc Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 10 May 2021 09:03:14 +0200 Subject: [PATCH 3/5] Start building against Spring Kafka 2.6.8 snapshots See gh-26385 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 566c9a4fe9..5eaf33c3ef 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1586,7 +1586,7 @@ bom { ] } } - library("Spring Kafka", "2.6.7") { + library("Spring Kafka", "2.6.8-SNAPSHOT") { group("org.springframework.kafka") { modules = [ "spring-kafka", From 0d920894b7aed3956408fb09c8ecde9e0a3d4233 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 10 May 2021 09:03:43 +0200 Subject: [PATCH 4/5] Start building against Spring Batch 4.3.3 snapshots See gh-26391 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 5eaf33c3ef..3923f4331f 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1548,7 +1548,7 @@ bom { ] } } - library("Spring Batch", "4.3.2") { + library("Spring Batch", "4.3.3-SNAPSHOT") { group("org.springframework.batch") { modules = [ "spring-batch-core", From a5cb9540ca3a24126cd9174e65a44870a1aa666b Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 10 May 2021 09:04:17 +0200 Subject: [PATCH 5/5] Start building against Spring LDAP 2.3.4 snapshots See gh-26393 --- .../boot/build/toolchain/ToolchainPlugin.java | 5 ++--- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/buildSrc/src/main/java/org/springframework/boot/build/toolchain/ToolchainPlugin.java b/buildSrc/src/main/java/org/springframework/boot/build/toolchain/ToolchainPlugin.java index 3f28e09e9a..ea2b29f41d 100644 --- a/buildSrc/src/main/java/org/springframework/boot/build/toolchain/ToolchainPlugin.java +++ b/buildSrc/src/main/java/org/springframework/boot/build/toolchain/ToolchainPlugin.java @@ -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; @@ -85,9 +86,7 @@ public class ToolchainPlugin implements Plugin { private void configureTestToolchain(Project project, ToolchainExtension toolchain) { project.getTasks().withType(Test.class, (test) -> { - // See https://github.com/spring-projects/spring-ldap/issues/570 - List arguments = Arrays.asList("--add-exports=java.naming/com.sun.jndi.ldap=ALL-UNNAMED", - "--illegal-access=warn"); + List arguments = Collections.singletonList("--illegal-access=warn"); test.jvmArgs(arguments); }); } diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 3923f4331f..2f1a6394f3 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1594,7 +1594,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",