Skip to content

Commit

Permalink
Merge pull request #89 from apache/refl-1
Browse files Browse the repository at this point in the history
AWS Extension configuration classes need to be registered for reflection
  • Loading branch information
oscerd committed Jul 24, 2019
2 parents 8c6ea1c + 1092b20 commit 4408f99
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
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;
Expand Down Expand Up @@ -91,6 +92,7 @@ void process(CombinedIndexBuildItem combinedIndexBuildItem,
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"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
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;
Expand Down Expand Up @@ -99,6 +100,7 @@ void process(CombinedIndexBuildItem combinedIndexBuildItem,
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"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.util.Collection;
import java.util.stream.Collectors;

import org.apache.camel.component.aws.sns.SnsConfiguration;
import org.apache.commons.logging.impl.Jdk14Logger;
import org.apache.commons.logging.impl.LogFactoryImpl;
import org.jboss.jandex.ClassInfo;
Expand Down Expand Up @@ -92,6 +93,7 @@ void process(CombinedIndexBuildItem combinedIndexBuildItem,
LogFactoryImpl.class.getCanonicalName(),
Jdk14Logger.class.getCanonicalName(),
AWS4Signer.class.getCanonicalName(),
SnsConfiguration.class.getCanonicalName(),
"com.sun.org.apache.xerces.internal.parsers.SAXParser",
"com.sun.xml.internal.stream.XMLInputFactoryImpl",
"org.apache.camel.converter.jaxp.XmlConverter"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.util.Collection;
import java.util.stream.Collectors;

import org.apache.camel.component.aws.sqs.SqsConfiguration;
import org.apache.commons.logging.impl.Jdk14Logger;
import org.apache.commons.logging.impl.LogFactoryImpl;
import org.jboss.jandex.ClassInfo;
Expand Down Expand Up @@ -92,6 +93,7 @@ void process(CombinedIndexBuildItem combinedIndexBuildItem,
LogFactoryImpl.class.getCanonicalName(),
Jdk14Logger.class.getCanonicalName(),
AWS4Signer.class.getCanonicalName(),
SqsConfiguration.class.getCanonicalName(),
"com.sun.org.apache.xerces.internal.parsers.SAXParser",
"com.sun.xml.internal.stream.XMLInputFactoryImpl",
"org.apache.camel.converter.jaxp.XmlConverter"));
Expand Down

0 comments on commit 4408f99

Please sign in to comment.