diff --git a/docs/antora.yml b/docs/antora.yml
index d1a387dd0b96..d335dcd38765 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -30,7 +30,7 @@ asciidoc:
# Project versions
camel-version: 4.0.1 # replace ${camel.version}
camel-docs-version: 4.0.x # replace ${camel.docs.components.version}
- quarkus-version: 3.4.1 # replace ${quarkus.version}
+ quarkus-version: 999-SNAPSHOT # replace ${quarkus.version}
graalvm-version: 23.0.1 # replace ${graalvm.version}
graalvm-docs-version: jdk17
mapstruct-version: 1.5.5.Final # replace ${mapstruct.version}
diff --git a/pom.xml b/pom.xml
index a89ea4808cfd..b22362672fab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,7 +61,7 @@
2.1.0
2.2.0
2.0.2
- 3.4.1
+ 999-SNAPSHOT
4.0.0
2.4.0
@@ -81,7 +81,7 @@
1.9.2
1.0.0-beta.3
3.7.1
- 1.75
+ 1.76
0.1.2
3.1.5
${commons-beanutils-version}
diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml b/poms/bom/src/main/generated/flattened-full-pom.xml
index 4cc7ae794672..3acf8bf4c016 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -6518,22 +6518,22 @@
org.bouncycastle
bcmail-jdk18on
- 1.75
+ 1.76
org.bouncycastle
bcpg-jdk18on
- 1.75
+ 1.76
org.bouncycastle
bcprov-ext-jdk18on
- 1.75
+ 1.76
org.bouncycastle
bcutil-jdk18on
- 1.75
+ 1.76
org.brotli
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index 5dabc56aeb31..ab11023c1e6e 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -6473,22 +6473,22 @@
org.bouncycastle
bcmail-jdk18on
- 1.75
+ 1.76
org.bouncycastle
bcpg-jdk18on
- 1.75
+ 1.76
org.bouncycastle
bcprov-ext-jdk18on
- 1.75
+ 1.76
org.bouncycastle
bcutil-jdk18on
- 1.75
+ 1.76
org.brotli
diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
index 2d02947e1cec..4aea44db1033 100644
--- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
@@ -6473,22 +6473,22 @@
org.bouncycastle
bcmail-jdk18on
- 1.75
+ 1.76
org.bouncycastle
bcpg-jdk18on
- 1.75
+ 1.76
org.bouncycastle
bcprov-ext-jdk18on
- 1.75
+ 1.76
org.bouncycastle
bcutil-jdk18on
- 1.75
+ 1.76
org.brotli
diff --git a/test-framework/junit5/src/main/java/org/apache/camel/quarkus/test/CallbackUtil.java b/test-framework/junit5/src/main/java/org/apache/camel/quarkus/test/CallbackUtil.java
index f01d15d7ed38..e67ab30b8287 100644
--- a/test-framework/junit5/src/main/java/org/apache/camel/quarkus/test/CallbackUtil.java
+++ b/test-framework/junit5/src/main/java/org/apache/camel/quarkus/test/CallbackUtil.java
@@ -29,8 +29,8 @@
import org.junit.jupiter.api.extension.ExtensionContext;
import org.junit.jupiter.api.extension.TestInstances;
import org.junit.jupiter.api.parallel.ExecutionMode;
-import org.junit.jupiter.engine.execution.ExtensionValuesStore;
import org.junit.jupiter.engine.execution.NamespaceAwareStore;
+import org.junit.platform.engine.support.store.NamespacedHierarchicalStore;
public class CallbackUtil {
@@ -75,7 +75,8 @@ static class MockExtensionContext implements ExtensionContext {
public MockExtensionContext(Optional lifecycle, String currentTestName) {
this.lifecycle = lifecycle;
this.currentTestName = currentTestName;
- this.globalStore = new NamespaceAwareStore(new ExtensionValuesStore(null), ExtensionContext.Namespace.GLOBAL);
+ this.globalStore = new NamespaceAwareStore(new NamespacedHierarchicalStore<>(null),
+ ExtensionContext.Namespace.GLOBAL);
}
@Override