This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
The following commit(s) were added to refs/heads/master by this push: new bf870a8 Revert "Support fast-jar packaging for quarkus" bf870a8 is described below commit bf870a87353ff2a8711363e6b6df75ec472638e1 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Mon Feb 1 09:42:12 2021 +0000 Revert "Support fast-jar packaging for quarkus" This reverts commit c7f6250321e308ef1a71ab7802b72ed8e9bf4906. --- support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy | 2 +- .../main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 77a6f83..8e2eb0d 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 @@ -19,7 +19,7 @@ new File(basedir, "catalog.yaml").withReader { def catalog = new groovy.yaml.YamlSlurper().parse(it) assert catalog.spec.runtime.version == runtimeVersion - assert catalog.spec.runtime.applicationClass == 'io.quarkus.bootstrap.runner.QuarkusEntryPoint' + assert catalog.spec.runtime.applicationClass == 'io.quarkus.runner.GeneratedMain' assert catalog.spec.runtime.metadata['camel.version'] == camelVersion assert catalog.spec.runtime.metadata['quarkus.version'] == quarkusVersion assert catalog.spec.runtime.metadata['camel-quarkus.version'] == camelQuarkusVersion diff --git a/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java b/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java index 286ab1f..0279087 100644 --- a/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java +++ b/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java @@ -112,7 +112,7 @@ public class GenerateCatalogMojo extends AbstractMojo { "org.apache.camel.quarkus", "camel-quarkus-catalog", version -> runtimeSpec.putMetadata("camel-quarkus.version", version)); - runtimeSpec.applicationClass("io.quarkus.bootstrap.runner.QuarkusEntryPoint"); + runtimeSpec.applicationClass("io.quarkus.runner.GeneratedMain"); runtimeSpec.addDependency("org.apache.camel.k", "camel-k-runtime"); runtimeSpec.putCapability( "cron",