This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a change to branch 2.7.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
from b6b5ee9b21 camel-quarkus-paho: Add reflection config for
RandomAccessFile (#3691) (#3700)
new 0a2929131d Use hasItems instead of containsInAnyOrder to verify list
of blob containers
new e20574950b Test Azure Blob with autowiredEnabled=false
new 96a1adcc46 Ban javax.el:el-api in favor of jakarta.el:jakarta.el-api
new 858b9e73fa Improve mail test coverage #3674
The 4 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:
.../storage/blob/it/AzureStorageBlobProducers.java | 8 +
.../storage/blob/it/AzureStorageBlobResource.java | 10 +-
.../storage/blob/it/AzureStorageBlobRoutes.java | 11 +-
.../storage/blob/it/AzureStorageBlobTest.java | 34 ++-
integration-tests/mail/pom.xml | 58 ++++-
.../quarkus/component/mail/CamelResource.java | 188 +++++++++++++-
.../camel/quarkus/component/mail/CamelRoute.java | 205 ++++++++++++++-
.../camel/quarkus/component/mail/MockMailbox.java | 55 ----
.../src/main/resources/application.properties | 3 +-
.../mail/src/main/resources/data/logo.jpeg | Bin 0 -> 10249 bytes
.../camel/quarkus/component/mail/MailTest.java | 283 +++++++++++++++++++--
.../quarkus/component/mail/MailTestResource.java | 88 +++++++
pom.xml | 5 +-
poms/bom-test/pom.xml | 6 +
poms/bom/src/main/generated/flattened-full-pom.xml | 22 +-
.../generated/flattened-reduced-verbose-pom.xml | 22 +-
16 files changed, 867 insertions(+), 131 deletions(-)
delete mode 100644
integration-tests/mail/src/main/java/org/apache/camel/quarkus/component/mail/MockMailbox.java
copy {integration-test-groups/aws2-quarkus-client/aws2-sqs =>
integration-tests/mail}/src/main/resources/application.properties (95%)
create mode 100644 integration-tests/mail/src/main/resources/data/logo.jpeg
create mode 100644
integration-tests/mail/src/test/java/org/apache/camel/quarkus/component/mail/MailTestResource.java