This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch camel-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 961f6f98b0709e98c83e844c245d9448d72b3eeb Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Thu Feb 13 17:19:44 2020 +0100 Upgarde to Camel 3.1.0 - WIP (bindy) --- .../quarkus/component/bindy/deployment/BindyProcessor.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/extensions/bindy/deployment/src/main/java/org/apache/camel/quarkus/component/bindy/deployment/BindyProcessor.java b/extensions/bindy/deployment/src/main/java/org/apache/camel/quarkus/component/bindy/deployment/BindyProcessor.java index 74bd071..65f9d97 100644 --- a/extensions/bindy/deployment/src/main/java/org/apache/camel/quarkus/component/bindy/deployment/BindyProcessor.java +++ b/extensions/bindy/deployment/src/main/java/org/apache/camel/quarkus/component/bindy/deployment/BindyProcessor.java @@ -18,6 +18,8 @@ package org.apache.camel.quarkus.component.bindy.deployment; import io.quarkus.deployment.annotations.BuildStep; import io.quarkus.deployment.builditem.FeatureBuildItem; +import io.quarkus.deployment.builditem.nativeimage.NativeImageResourceDirectoryBuildItem; +import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem; class BindyProcessor { @@ -28,4 +30,14 @@ class BindyProcessor { return new FeatureBuildItem(FEATURE); } + @BuildStep + ReflectiveClassBuildItem reflectiveClasses() { + return new ReflectiveClassBuildItem(false, false, "com.ibm.icu.text.BreakIteratorFactory"); + } + + @BuildStep + NativeImageResourceDirectoryBuildItem resourceBundles() { + return new NativeImageResourceDirectoryBuildItem("com/ibm/icu/impl/data"); + } + }