This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch automatic-periodic-sync
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
omit 6cb3bfce78b [create-pull-request] automated change
add f57aabb9687 [create-pull-request] automated change (#1653)
add 0f52a544db5 CAMEL-22964 SB platform-http: undertow access log managed
by camel logging (#1652)
add 11db2099cf3 CAMEL-22379: Add Mina Sftp Component Starter (#1654)
add b7304bce533 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 (6cb3bfce78b)
\
N -- N -- N refs/heads/automatic-periodic-sync (b7304bce533)
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:
.../camel/springboot/catalog/components.properties | 1 +
.../components/{sftp.json => mina-sftp.json} | 281 +++++++++++----------
.../camel/springboot/catalog/others/yaml-dsl.json | 2 +-
.../pom.xml | 11 +-
.../src/main/docs/mina-sftp.json} | 38 +--
.../MinaSftpComponentAutoConfiguration.java} | 20 +-
.../MinaSftpComponentConfiguration.java} | 10 +-
.../src/main/resources/META-INF/LICENSE.txt | 0
.../src/main/resources/META-INF/NOTICE.txt | 0
...rk.boot.autoconfigure.AutoConfiguration.imports | 3 +-
.../file/remote/mina/springboot/BaseMinaSftp.java} | 52 ++--
.../MinaSftpComponentAutoConfigurationTest.java | 59 +++++
.../MinaSftpConfigurationPropertiesTest.java | 67 +++++
.../mina/springboot/MinaSftpEmbeddedService.java} | 46 ++--
.../springboot/MinaSftpEndpointOptionsTest.java | 112 ++++++++
.../springboot/MinaSftpSimpleProducerTest.java | 83 ++++++
.../src/test/resources/hostkey.pem | 0
.../src/test/resources/log4j2.properties | 15 +-
.../src/main/docs/platform-http.adoc | 63 +++++
.../src/main/docs/platform-http.json | 12 +
.../customizer/UndertowAccessLogConfiguration.java | 61 +++++
.../customizer/UndertowAccessLogProperties.java} | 21 +-
...rk.boot.autoconfigure.AutoConfiguration.imports | 3 +-
components-starter/pom.xml | 1 +
tooling/camel-spring-boot-bom/pom.xml | 5 +
tooling/camel-spring-boot-dependencies/pom.xml | 10 +
26 files changed, 731 insertions(+), 245 deletions(-)
copy
catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/{sftp.json
=> mina-sftp.json} (74%)
copy components-starter/{camel-vertx-http-starter =>
camel-mina-sftp-starter}/pom.xml (87%)
copy components-starter/{camel-couchbase-starter/src/main/docs/couchbase.json
=> camel-mina-sftp-starter/src/main/docs/mina-sftp.json} (66%)
copy
components-starter/{camel-grpc-starter/src/main/java/org/apache/camel/component/grpc/springboot/GrpcComponentAutoConfiguration.java
=>
camel-mina-sftp-starter/src/main/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentAutoConfiguration.java}
(85%)
copy
components-starter/{camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/SftpComponentConfiguration.java
=>
camel-mina-sftp-starter/src/main/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentConfiguration.java}
(93%)
copy {archetypes/camel-archetype-spring-boot =>
components-starter/camel-mina-sftp-starter}/src/main/resources/META-INF/LICENSE.txt
(100%)
copy {archetypes/camel-archetype-spring-boot =>
components-starter/camel-mina-sftp-starter}/src/main/resources/META-INF/NOTICE.txt
(100%)
copy components-starter/{camel-asn1-starter =>
camel-mina-sftp-starter}/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
(91%)
copy
components-starter/{camel-ftp-starter/src/test/java/org/apache/camel/component/file/remote/springboot/AbstractBaseFtp.java
=>
camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/BaseMinaSftp.java}
(78%)
create mode 100644
components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpComponentAutoConfigurationTest.java
create mode 100644
components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpConfigurationPropertiesTest.java
copy
components-starter/{camel-ftp-starter/src/test/java/org/apache/camel/component/file/remote/springboot/sftp/SftpEmbeddedService.java
=>
camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpEmbeddedService.java}
(87%)
create mode 100644
components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpEndpointOptionsTest.java
create mode 100644
components-starter/camel-mina-sftp-starter/src/test/java/org/apache/camel/component/file/remote/mina/springboot/MinaSftpSimpleProducerTest.java
copy components-starter/{camel-ftp-starter =>
camel-mina-sftp-starter}/src/test/resources/hostkey.pem (100%)
copy docs/local-build.sh =>
components-starter/camel-mina-sftp-starter/src/test/resources/log4j2.properties
(77%)
mode change 100755 => 100644
create mode 100644
components-starter/camel-platform-http-starter/src/main/docs/platform-http.adoc
create mode 100644
components-starter/camel-platform-http-starter/src/main/java/org/apache/camel/component/platform/http/springboot/customizer/UndertowAccessLogConfiguration.java
copy
components-starter/{camel-openapi-java-starter/src/main/java/org/apache/camel/springboot/openapi/OpenApiConfiguration.java
=>
camel-platform-http-starter/src/main/java/org/apache/camel/component/platform/http/springboot/customizer/UndertowAccessLogProperties.java}
(61%)