it-cleanup(core-main): move assertj conditions to camel-quarkus-integration-test-support
diff --git a/integration-tests/core-main/pom.xml b/integration-tests/core-main/pom.xml
index d2dd073..39d5c2a 100644
--- a/integration-tests/core-main/pom.xml
+++ b/integration-tests/core-main/pom.xml
@@ -94,6 +94,11 @@
             <artifactId>assertj-core</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel.quarkus</groupId>
+            <artifactId>camel-quarkus-integration-test-support</artifactId>
+            <scope>test</scope>
+        </dependency>
 
     </dependencies>
 
diff --git a/integration-tests/core-main/src/test/java/org/apache/camel/quarkus/core/CamelTest.java b/integration-tests/core-main/src/test/java/org/apache/camel/quarkus/core/CamelTest.java
index a9c5892..7ca6de1 100644
--- a/integration-tests/core-main/src/test/java/org/apache/camel/quarkus/core/CamelTest.java
+++ b/integration-tests/core-main/src/test/java/org/apache/camel/quarkus/core/CamelTest.java
@@ -30,9 +30,9 @@
 import org.apache.camel.reactive.vertx.VertXReactiveExecutor;
 import org.junit.jupiter.api.Test;
 
-import static org.apache.camel.quarkus.core.CamelTestConditions.doesNotStartWith;
-import static org.apache.camel.quarkus.core.CamelTestConditions.entry;
-import static org.apache.camel.quarkus.core.CamelTestConditions.startsWith;
+import static org.apache.camel.quarkus.test.Conditions.doesNotStartWith;
+import static org.apache.camel.quarkus.test.Conditions.entry;
+import static org.apache.camel.quarkus.test.Conditions.startsWith;
 import static org.apache.camel.util.CollectionHelper.mapOf;
 import static org.assertj.core.api.Assertions.assertThat;
 import static org.hamcrest.Matchers.is;
diff --git a/integration-tests/core-main/src/test/java/org/apache/camel/quarkus/core/CamelTestConditions.java b/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/Conditions.java
similarity index 93%
rename from integration-tests/core-main/src/test/java/org/apache/camel/quarkus/core/CamelTestConditions.java
rename to integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/Conditions.java
index fbc813f..f2aef66 100644
--- a/integration-tests/core-main/src/test/java/org/apache/camel/quarkus/core/CamelTestConditions.java
+++ b/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/Conditions.java
@@ -14,15 +14,15 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.camel.quarkus.core;
+package org.apache.camel.quarkus.test;
 
 import java.util.Map;
 import java.util.Objects;
 
 import org.assertj.core.api.Condition;
 
-public final class CamelTestConditions {
-    private CamelTestConditions() {
+public final class Conditions {
+    private Conditions() {
     }
 
     public static Condition<Map.Entry<String, String>> entry(String key, String value) {