This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a change to branch 3.33.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
from c5eba8b501 [maven-release-plugin] Set next development version
3.33.2-SNAPSHOT
new 2936b358bc feat: Add Camel SFTP certificate based authentication
new e908b6d5fc Update generated files after release
The 2 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:
docs/antora.yml | 2 +-
.../component/ftp/deployment/FtpProcessor.java | 20 +
.../org/apache/camel/component/qute/qute.json | 2 +-
.../support/sftp/SftpHostCertTestResource.java | 170 +++
.../test/support/sftp/SftpTestResource.java | 25 +-
.../quarkus/component/sftp/it/SftpResource.java | 252 ++++
.../ftp/src/main/resources/application.properties | 2 +
.../main/resources/certs/generate-certificates.sh | 104 ++
.../ftp/src/main/resources/certs/host-ca.pub | 1 +
.../src/main/resources/certs/host-key-rsa-cert.pub | 1 +
.../ftp/src/main/resources/certs/host-key-rsa.key | 27 +
.../src/main/resources/certs/test-key-rsa-cert.pub | 1 +
.../ftp/src/main/resources/certs/test-key-rsa.key | 27 +
.../sftp/it/{SftpIT.java => SftpHostCertIT.java} | 6 +-
.../it/{SftpTest.java => SftpHostCertTest.java} | 50 +-
.../camel/quarkus/component/sftp/it/SftpTest.java | 82 ++
pom.xml | 4 +-
poms/bom/src/main/generated/flattened-full-pom.xml | 1492 ++++++++++----------
.../src/main/generated/flattened-reduced-pom.xml | 1492 ++++++++++----------
.../generated/flattened-reduced-verbose-pom.xml | 1492 ++++++++++----------
20 files changed, 2981 insertions(+), 2271 deletions(-)
create mode 100644
integration-tests-support/sftp/src/main/java/org/apache/camel/quarkus/test/support/sftp/SftpHostCertTestResource.java
create mode 100755
integration-tests/ftp/src/main/resources/certs/generate-certificates.sh
create mode 100644 integration-tests/ftp/src/main/resources/certs/host-ca.pub
create mode 100644
integration-tests/ftp/src/main/resources/certs/host-key-rsa-cert.pub
create mode 100644
integration-tests/ftp/src/main/resources/certs/host-key-rsa.key
create mode 100644
integration-tests/ftp/src/main/resources/certs/test-key-rsa-cert.pub
create mode 100644
integration-tests/ftp/src/main/resources/certs/test-key-rsa.key
copy
integration-tests/ftp/src/test/java/org/apache/camel/quarkus/component/sftp/it/{SftpIT.java
=> SftpHostCertIT.java} (87%)
copy
integration-tests/ftp/src/test/java/org/apache/camel/quarkus/component/sftp/it/{SftpTest.java
=> SftpHostCertTest.java} (59%)