diff --git a/bom/application/pom.xml b/bom/application/pom.xml
index cc0c600c539eb..68276e66e35c2 100644
--- a/bom/application/pom.xml
+++ b/bom/application/pom.xml
@@ -63,7 +63,7 @@
3.0.3
6.2.1
4.2.0
- 2.0.0
+ 2.1.0
1.0.13
3.0.0
3.2.0
diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/classic/pom.xml
index 858a9502a30f8..bc3a92149ffb0 100644
--- a/integration-tests/maven/src/test/resources-filtered/projects/classic/pom.xml
+++ b/integration-tests/maven/src/test/resources-filtered/projects/classic/pom.xml
@@ -43,6 +43,11 @@
io.quarkus
quarkus-websockets
+
+ io.smallrye.common
+ smallrye-common-cpu
+ 1.13.2
+
org.webjars
jquery-ui
diff --git a/integration-tests/maven/src/test/resources-filtered/projects/classic/src/main/java/org/acme/ClasspathResources.java b/integration-tests/maven/src/test/resources-filtered/projects/classic/src/main/java/org/acme/ClasspathResources.java
index e1da81f1b750a..54ef8909e0b4f 100644
--- a/integration-tests/maven/src/test/resources-filtered/projects/classic/src/main/java/org/acme/ClasspathResources.java
+++ b/integration-tests/maven/src/test/resources-filtered/projects/classic/src/main/java/org/acme/ClasspathResources.java
@@ -72,7 +72,7 @@ private String assertMultiRelease() {
try {
//this class is only present in multi release jars
//for fast-jar we need to make sure it is loaded correctly
- Class> clazz = this.getClass().getClassLoader().loadClass("io.smallrye.context.Jdk9CompletableFutureWrapper");
+ Class> clazz = this.getClass().getClassLoader().loadClass("io.smallrye.common.cpu.ProcessorInfo");
if (clazz.getClassLoader() == getClass().getClassLoader()) {
return SUCCESS;
}
diff --git a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml
index 4bad2ac3ebb3c..29da5f6c28d0c 100644
--- a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml
+++ b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml
@@ -40,6 +40,11 @@
io.quarkus
quarkus-smallrye-context-propagation
+
+ io.smallrye.common
+ smallrye-common-cpu
+ 1.13.2
+
commons-io
commons-io
diff --git a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/src/main/java/org/acme/ClasspathResources.java b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/src/main/java/org/acme/ClasspathResources.java
index 5a0d7d9a7d7f1..62da97eb07a1c 100644
--- a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/src/main/java/org/acme/ClasspathResources.java
+++ b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/src/main/java/org/acme/ClasspathResources.java
@@ -72,7 +72,7 @@ private String assertMultiRelease() {
try {
//this class is only present in multi release jars
//for fast-jar we need to make sure it is loaded correctly
- Class> clazz = this.getClass().getClassLoader().loadClass("io.smallrye.context.Jdk9CompletableFutureWrapper");
+ Class> clazz = this.getClass().getClassLoader().loadClass("io.smallrye.common.cpu.ProcessorInfo");
if (clazz.getClassLoader() == getClass().getClassLoader()) {
return SUCCESS;
}