This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch reflections in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit c1c554788096c11720512c7adbb528ba20bfb2c2 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Jul 24 16:04:32 2019 +0200 AWS-EKS Extension: EKSConfiguration needs to be registered for reflection --- .../quarkus/component/aws/eks/deployment/CamelAwsEKSProcessor.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/aws-eks/deployment/src/main/java/org/apache/camel/quarkus/component/aws/eks/deployment/CamelAwsEKSProcessor.java b/extensions/aws-eks/deployment/src/main/java/org/apache/camel/quarkus/component/aws/eks/deployment/CamelAwsEKSProcessor.java index c1d250b..b53f042 100644 --- a/extensions/aws-eks/deployment/src/main/java/org/apache/camel/quarkus/component/aws/eks/deployment/CamelAwsEKSProcessor.java +++ b/extensions/aws-eks/deployment/src/main/java/org/apache/camel/quarkus/component/aws/eks/deployment/CamelAwsEKSProcessor.java @@ -19,6 +19,7 @@ package org.apache.camel.quarkus.component.aws.eks.deployment; import java.util.Collection; import java.util.stream.Collectors; +import org.apache.camel.component.aws.eks.EKSConfiguration; import org.apache.commons.logging.impl.Jdk14Logger; import org.apache.commons.logging.impl.LogFactoryImpl; import org.jboss.jandex.ClassInfo; @@ -91,6 +92,7 @@ class CamelAwsEKSProcessor { CredentialScope.class.getCanonicalName(), LogFactoryImpl.class.getCanonicalName(), Jdk14Logger.class.getCanonicalName(), + EKSConfiguration.class.getCanonicalName(), "com.sun.org.apache.xerces.internal.parsers.SAXParser", "com.sun.xml.internal.stream.XMLInputFactoryImpl", "org.apache.camel.converter.jaxp.XmlConverter"));