diff --git a/benchmarks/pom.xml b/benchmarks/pom.xml
index a32935783..126664a75 100644
--- a/benchmarks/pom.xml
+++ b/benchmarks/pom.xml
@@ -28,7 +28,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.4.7
+ 2.6.0-SNAPSHOT
diff --git a/pom.xml b/pom.xml
index 0028323d3..709f42cc0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,7 +71,7 @@
3.1.4-SNAPSHOT
3.1.0-SNAPSHOT
3.1.0-SNAPSHOT
- 2.3.2-SNAPSHOT
+ 2.3.3-SNAPSHOT
2.5.1
5.13.2
0.32.0
diff --git a/tests/common/src/main/java/org/springframework/cloud/sleuth/instrument/messaging/TraceFunctionAroundWrapperTests.java b/tests/common/src/main/java/org/springframework/cloud/sleuth/instrument/messaging/TraceFunctionAroundWrapperTests.java
index 96da71089..df29fcc70 100644
--- a/tests/common/src/main/java/org/springframework/cloud/sleuth/instrument/messaging/TraceFunctionAroundWrapperTests.java
+++ b/tests/common/src/main/java/org/springframework/cloud/sleuth/instrument/messaging/TraceFunctionAroundWrapperTests.java
@@ -74,9 +74,11 @@ public abstract class TraceFunctionAroundWrapperTests {
function.setSkipOutputConversion(true);
Object result = function.get();
assertThat(result).isInstanceOf(Publisher.class);
- /* TODO
- * We'll need more assertions but for now this one will ensure that wrapper does not change the type of return value
- * specifically for reactive cases where Flux became Message due to the current code in TraceFunctionAroundWrapper
+ /*
+ * TODO We'll need more assertions but for now this one will ensure that
+ * wrapper does not change the type of return value specifically for reactive
+ * cases where Flux became Message due to the current code in
+ * TraceFunctionAroundWrapper
*/
}
}