This is an automated email from the ASF dual-hosted git repository. nferraro pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 5ea1b6e5183d6d24b584b6cd54df5e05b1fe5365 Author: Doru Bercea <[email protected]> AuthorDate: Tue Nov 10 10:50:38 2020 -0500 Add class containing main function. --- pkg/cmd/util_commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/util_commands.go b/pkg/cmd/util_commands.go index 36ae564..213ea6b 100644 --- a/pkg/cmd/util_commands.go +++ b/pkg/cmd/util_commands.go @@ -77,7 +77,7 @@ func RunLocalIntegration(properties []string, dependencies []string, routes []st args := make([]string, 0) args = append(args, "-cp") args = append(args, classpathValue) - args = append(args, "org.apache.camel.k.main.Application") + args = append(args, "io.quarkus.runner.GeneratedMain") cmd := exec.CommandContext(ctx, javaCmd, args...) cmd.Stderr = os.Stderr
