This is an automated email from the ASF dual-hosted git repository. nferraro pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git.
from 119c46c Fix #1102: fix e2e test new 910b5b7 Remove the option to set the camel version #1229 new f53f85d Add missing artefacts to om-runtime.xml new 3c99d93 Enable Apache Snapshot repository by default new 6ef5b3f Cleanup travis build new 653228c Disable staging repo The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .github/workflows/pr-kind.yml | 4 + .github/workflows/pr-knative.yml | 4 + .github/workflows/pr-validate.yml | 2 +- .travis.yml | 5 +- assets/json-schema/CamelCatalog.json | 113 +- assets/json-schema/Integration.json | 28 +- assets/json-schema/IntegrationKit.json | 28 +- build/maven/pom-catalog.xml | 85 +- build/maven/pom-runtime.xml | 82 +- ...yaml => camel-catalog-1.1.0-SNAPSHOT-main.yaml} | 3355 ++++++++++---------- ...l => camel-catalog-1.1.0-SNAPSHOT-quarkus.yaml} | 818 +++-- deploy/camel-catalog-3.0.0-1.0.9.yaml | 2919 ----------------- deploy/camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml | 616 ---- deploy/camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml | 616 ---- deploy/crd-camel-catalog.yaml | 10 +- deploy/resources.go | 56 +- pkg/apis/camel/v1/build_types.go | 28 +- pkg/apis/camel/v1/camelcatalog_types.go | 28 +- pkg/apis/camel/v1/common_types.go | 27 +- pkg/apis/camel/v1/integration_types.go | 3 +- pkg/apis/camel/v1/integrationkit_types.go | 3 +- pkg/apis/camel/v1/integrationplatform_types.go | 3 +- pkg/apis/camel/v1/zz_generated.deepcopy.go | 113 +- pkg/builder/builder_steps.go | 42 +- pkg/builder/builder_steps_test.go | 30 +- pkg/builder/builder_test.go | 3 +- pkg/builder/runtime/main.go | 21 +- pkg/builder/runtime/main_test.go | 30 +- pkg/builder/runtime/quarkus.go | 55 +- pkg/builder/runtime/runtime.go | 8 +- pkg/cmd/describe_integration.go | 2 +- pkg/cmd/describe_kit.go | 2 +- pkg/cmd/describe_platform.go | 6 +- pkg/cmd/install.go | 4 - pkg/controller/integration/build_kit.go | 6 +- pkg/controller/integration/util.go | 100 +- pkg/metadata/metadata_dependencies_test.go | 14 +- pkg/platform/defaults.go | 4 - pkg/trait/builder.go | 8 +- pkg/trait/builder_test.go | 3 +- pkg/trait/camel.go | 75 +- pkg/trait/camel_test.go | 16 +- pkg/trait/dependencies.go | 93 +- pkg/trait/dependencies_test.go | 2 +- pkg/trait/environment.go | 2 - pkg/trait/jvm.go | 23 +- pkg/trait/jvm_test.go | 7 +- pkg/trait/quarkus.go | 167 - pkg/trait/quarkus_test.go | 162 +- pkg/trait/rest-dsl.go | 9 +- pkg/util/camel/camel_runtime.go | 21 +- pkg/util/camel/camel_runtime_catalog.go | 4 +- pkg/util/camel/camel_types.go | 8 - pkg/util/camel/camel_util.go | 66 +- pkg/util/camel/camel_util_test.go | 146 +- pkg/util/camel/catalog.go | 44 +- pkg/util/camel/catalog_test.go | 7 +- pkg/util/controller/util.go | 10 + pkg/util/defaults/defaults.go | 11 +- pkg/util/maven/maven_project.go | 2 + pkg/util/maven/maven_project_test.go | 3 + pkg/util/maven/maven_types.go | 7 + pkg/util/source/inspector.go | 2 +- pkg/util/test/catalog_test.go | 2 +- pkg/util/util.go | 3 +- script/Makefile | 21 +- script/build_catalog.sh | 10 +- script/travis_build.sh | 1 + 68 files changed, 2832 insertions(+), 7376 deletions(-) rename deploy/{camel-catalog-3.0.0-1.0.10.yaml => camel-catalog-1.1.0-SNAPSHOT-main.yaml} (98%) rename deploy/{camel-catalog-quarkus-1.0.0-M2-1.0.10.yaml => camel-catalog-1.1.0-SNAPSHOT-quarkus.yaml} (79%) delete mode 100644 deploy/camel-catalog-3.0.0-1.0.9.yaml delete mode 100644 deploy/camel-catalog-quarkus-1.0.0-M1-1.0.10.yaml delete mode 100644 deploy/camel-catalog-quarkus-1.0.0-M1-1.0.9.yaml