diff --git a/pom.xml b/pom.xml index 57ea07f81..1277281bf 100644 --- a/pom.xml +++ b/pom.xml @@ -43,6 +43,7 @@ 4.2.0 + 3.6.0 3.6.0 io.quarkus.platform 3.6.0 diff --git a/support/camel-k-maven-plugin/pom.xml b/support/camel-k-maven-plugin/pom.xml index 673f28d8b..88a17524d 100644 --- a/support/camel-k-maven-plugin/pom.xml +++ b/support/camel-k-maven-plugin/pom.xml @@ -72,10 +72,12 @@ org.apache.camel.quarkus camel-quarkus-catalog + ${camel-quarkus-version} org.apache.camel.quarkus camel-quarkus-core + ${camel-quarkus-version} org.apache.camel @@ -169,6 +171,7 @@ ${project.version} ${camel-version} + ${camel-quarkus-version} ${quarkus-version} ${quarkus-native-builder-image} ${jib-maven-plugin-version} diff --git a/support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy b/support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy index 4fc3e61c8..c863cba9e 100644 --- a/support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy +++ b/support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy @@ -21,6 +21,9 @@ new File(basedir, "catalog.yaml").withReader { assert catalog.spec.runtime.version == runtimeVersion assert catalog.spec.runtime.applicationClass == 'io.quarkus.bootstrap.runner.QuarkusEntryPoint' assert catalog.spec.runtime.metadata['camel.version'] == camelVersion + // Re-enabled this when the version will be the same again + //assert catalog.spec.runtime.metadata['quarkus.version'] == quarkusVersion + assert catalog.spec.runtime.metadata['camel-quarkus.version'] == camelQuarkusVersion assert catalog.spec.runtime.metadata['quarkus.native-builder-image'] == quarkusNativeBuilderImage assert catalog.spec.runtime.metadata['jib.maven-plugin.version'] == jibMavenPluginVersion assert catalog.spec.runtime.metadata['jib.layer-filter-extension-maven.version'] == jibLayerFilterExtensionMavenVersion