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

acosentino pushed a commit to branch configuration-must-be-registered-for-refl
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 71b9ceaeb1391c1d6660ffa67ae54ab384e7cb4c
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Wed Jul 24 15:56:17 2019 +0200

    AWS S3 Extension: S3Configuration needs to be registered for Reflection
---
 .../camel/quarkus/component/aws/s3/deployment/CamelAwsS3Processor.java  | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/extensions/aws-s3/deployment/src/main/java/org/apache/camel/quarkus/component/aws/s3/deployment/CamelAwsS3Processor.java
 
b/extensions/aws-s3/deployment/src/main/java/org/apache/camel/quarkus/component/aws/s3/deployment/CamelAwsS3Processor.java
index 3f16539..f2471bf 100644
--- 
a/extensions/aws-s3/deployment/src/main/java/org/apache/camel/quarkus/component/aws/s3/deployment/CamelAwsS3Processor.java
+++ 
b/extensions/aws-s3/deployment/src/main/java/org/apache/camel/quarkus/component/aws/s3/deployment/CamelAwsS3Processor.java
@@ -19,6 +19,7 @@ package org.apache.camel.quarkus.component.aws.s3.deployment;
 import java.util.Collection;
 import java.util.stream.Collectors;
 
+import org.apache.camel.component.aws.s3.S3Configuration;
 import org.apache.commons.logging.impl.Jdk14Logger;
 import org.apache.commons.logging.impl.LogFactoryImpl;
 import org.jboss.jandex.ClassInfo;
@@ -99,6 +100,7 @@ class CamelAwsS3Processor {
                 LogFactoryImpl.class.getCanonicalName(),
                 Jdk14Logger.class.getCanonicalName(),
                 AWSS3V4Signer.class.getCanonicalName(),
+                S3Configuration.class.getCanonicalName(),
                 "com.sun.org.apache.xerces.internal.parsers.SAXParser",
                 "com.sun.xml.internal.stream.XMLInputFactoryImpl",
                 "org.apache.camel.converter.jaxp.XmlConverter"));

Reply via email to