You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2020/09/16 12:41:13 UTC

[camel-k-runtime] branch master updated (235ef13 -> db61599)

This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git.


    from 235ef13  chore(build): enable native tests for js loader
     add db61599  Generate Configurer to bind properties to Customizers without the need for reflection

No new revisions were added by this update.

Summary of changes:
 camel-k-main/camel-k-runtime-health/pom.xml        | 38 ++++++++++
 .../health/HealthContextCustomizerConfigurer.java  | 60 ++++++++++++++++
 ...g.apache.camel.k.health.HealthContextCustomizer |  2 +
 .../camel/k/health/HealthContextCustomizer.java    |  2 +
 camel-k-main/camel-k-runtime-tracing/pom.xml       | 38 ++++++++++
 .../TracingContextCustomizerConfigurer.java        | 69 +++++++++++++++++++
 ...apache.camel.k.tracing.TracingContextCustomizer |  2 +
 .../camel/k/tracing/TracingContextCustomizer.java  |  2 +
 camel-k-runtime-core/pom.xml                       |  1 -
 camel-k-runtime-http/pom.xml                       | 38 ++++++++++
 ...formHttpServiceContextCustomizerConfigurer.java | 80 ++++++++++++++++++++++
 ...mel.k.http.PlatformHttpServiceContextCustomizer |  2 +
 .../http/PlatformHttpServiceContextCustomizer.java |  3 +-
 camel-k-runtime-knative/pom.xml                    | 43 ++++++++++--
 ...tiveSinkBindingContextCustomizerConfigurer.java | 60 ++++++++++++++++
 ....customizer.KnativeSinkBindingContextCustomizer |  2 +
 .../KnativeSinkBindingContextCustomizer.java       |  2 +
 camel-k-runtime-webhook/pom.xml                    | 38 ++++++++++
 .../WebhookContextCustomizerConfigurer.java        | 20 +++---
 ...apache.camel.k.webhook.WebhookContextCustomizer |  2 +
 .../camel/k/webhook/WebhookContextCustomizer.java  |  2 +
 21 files changed, 489 insertions(+), 17 deletions(-)
 create mode 100644 camel-k-main/camel-k-runtime-health/src/generated/java/org/apache/camel/k/health/HealthContextCustomizerConfigurer.java
 create mode 100644 camel-k-main/camel-k-runtime-health/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.k.health.HealthContextCustomizer
 create mode 100644 camel-k-main/camel-k-runtime-tracing/src/generated/java/org/apache/camel/k/tracing/TracingContextCustomizerConfigurer.java
 create mode 100644 camel-k-main/camel-k-runtime-tracing/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.k.tracing.TracingContextCustomizer
 create mode 100644 camel-k-runtime-http/src/generated/java/org/apache/camel/k/http/PlatformHttpServiceContextCustomizerConfigurer.java
 create mode 100644 camel-k-runtime-http/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.k.http.PlatformHttpServiceContextCustomizer
 create mode 100644 camel-k-runtime-knative/src/generated/java/org/apache/camel/k/knative/customizer/KnativeSinkBindingContextCustomizerConfigurer.java
 create mode 100644 camel-k-runtime-knative/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.k.knative.customizer.KnativeSinkBindingContextCustomizer
 copy camel-k-runtime-core/src/generated/java/org/apache/camel/k/listener/SourcesConfigurerConfigurer.java => camel-k-runtime-webhook/src/generated/java/org/apache/camel/k/webhook/WebhookContextCustomizerConfigurer.java (54%)
 create mode 100644 camel-k-runtime-webhook/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.k.webhook.WebhookContextCustomizer