This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git
omit af3bd68bbf2 Regen for commit c8fbf9d3eb04546d5473f1ef378419de2c0f836f
add 65df9848c8b CAMEL-19593: camel-platform-http-main - Standalone
developer web console for camel-main
add 36485f50f80 CAMEL-19593: camel-jbang should reuse
camel-platform-http-main
add e0f532eee8c Regen
add c412e0b35f1 Regen
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (af3bd68bbf2)
\
N -- N -- N refs/heads/regen_bot (c412e0b35f1)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
bom/camel-bom/pom.xml | 5 +
catalog/camel-allcomponents/pom.xml | 5 +
.../main/camel-main-configuration-metadata.json | 11 +
.../org/apache/camel/catalog/others.properties | 1 +
.../camel/catalog/others/platform-http-main.json | 15 +
components/camel-platform-http-main/pom.xml | 94 ++++
.../services/org/apache/camel/other.properties | 7 +
.../services/org/apache/camel/platform-http-server | 2 +
.../generated/resources/platform-http-main.json | 15 +
.../src/main/docs/platform-http-main.adoc | 28 ++
.../http/main/DefaultMainHttpServerFactory.java | 61 +++
.../platform/http/main/MainHttpServer.java | 551 +++++++++++++--------
.../http/vertx/VertxPlatformHttpServer.java | 34 +-
.../VertxPlatformHttpServerConfiguration.java | 7 +-
.../http/vertx/VertxPlatformHttpServerSupport.java | 2 +-
.../test/main/junit5/CamelMainTestSupport.java | 4 +-
components/pom.xml | 1 +
...ttpServerConfigurationPropertiesConfigurer.java | 103 ++++
.../camel-main-configuration-metadata.json | 11 +
...he.camel.main.HttpServerConfigurationProperties | 2 +
core/camel-main/src/main/docs/main.adoc | 19 +
.../org/apache/camel/main/BaseMainSupport.java | 94 +++-
.../main/HttpServerConfigurationProperties.java | 264 ++++++++++
.../camel/main/MainConfigurationProperties.java | 22 +
.../java/org/apache/camel/main/MainConstants.java | 30 ++
.../apache/camel/main/MainHttpServerFactory.java | 33 ++
.../main/MainPropertyPlaceholderWithEnvTest.java | 14 +-
.../MainPropertyPlaceholderWithSystemTest.java | 33 +-
.../ROOT/pages/camel-4-migration-guide.adoc | 13 +
.../dsl/KafkaComponentBuilderFactory.java | 2 +-
dsl/camel-kamelet-main/pom.xml | 9 +-
.../java/org/apache/camel/main/KameletMain.java | 26 +-
.../DependencyDownloaderComponentResolver.java | 37 +-
parent/pom.xml | 5 +
.../maven/packaging/PrepareCamelMainMojo.java | 5 +
35 files changed, 1274 insertions(+), 291 deletions(-)
create mode 100644
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/platform-http-main.json
create mode 100644 components/camel-platform-http-main/pom.xml
create mode 100644
components/camel-platform-http-main/src/generated/resources/META-INF/services/org/apache/camel/other.properties
create mode 100644
components/camel-platform-http-main/src/generated/resources/META-INF/services/org/apache/camel/platform-http-server
create mode 100644
components/camel-platform-http-main/src/generated/resources/platform-http-main.json
create mode 100644
components/camel-platform-http-main/src/main/docs/platform-http-main.adoc
create mode 100644
components/camel-platform-http-main/src/main/java/org/apache/camel/component/platform/http/main/DefaultMainHttpServerFactory.java
rename
dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/http/VertxHttpServer.java
=>
components/camel-platform-http-main/src/main/java/org/apache/camel/component/platform/http/main/MainHttpServer.java
(67%)
create mode 100644
core/camel-main/src/generated/java/org/apache/camel/main/HttpServerConfigurationPropertiesConfigurer.java
create mode 100644
core/camel-main/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.main.HttpServerConfigurationProperties
create mode 100644
core/camel-main/src/main/java/org/apache/camel/main/HttpServerConfigurationProperties.java
create mode 100644
core/camel-main/src/main/java/org/apache/camel/main/MainConstants.java
create mode 100644
core/camel-main/src/main/java/org/apache/camel/main/MainHttpServerFactory.java