This is an automated email from the ASF dual-hosted git repository.
jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/camel-main by this push:
new 44a31b24b8 fixed Bindy native
44a31b24b8 is described below
commit 44a31b24b8b56850259d2177ba85831f527b36bb
Author: JiriOndrusek <[email protected]>
AuthorDate: Wed Nov 20 09:08:10 2024 +0100
fixed Bindy native
---
.../apache/camel/quarkus/component/bindy/deployment/BindyProcessor.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 e793494842..718ae5c7a0 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
@@ -53,7 +53,7 @@ class BindyProcessor {
@BuildStep
NativeImageResourceDirectoryBuildItem resourceBundles() {
- String resourcePath =
String.format("com/ibm/icu/impl/data/icudt%db/brkitr", ICU_VERSION.getMajor());
+ String resourcePath =
String.format("com/ibm/icu/impl/data/icudata/brkitr", ICU_VERSION.getMajor());
return new NativeImageResourceDirectoryBuildItem(resourcePath);
}