This is an automated email from the ASF dual-hosted git repository.
egonzalez pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-kie-kogito-examples.git
The following commit(s) were added to refs/heads/main by this push:
new b2e31e585 [incubator-kie-issues#1260] Add note to README files of
workflow examples regarding required configuration setting for native images
(#1929)
b2e31e585 is described below
commit b2e31e5851c46913103e81ee098e0d87cfbe3c19
Author: Martin Weiler <[email protected]>
AuthorDate: Fri May 24 00:26:15 2024 -0600
[incubator-kie-issues#1260] Add note to README files of workflow examples
regarding required configuration setting for native images (#1929)
---
.../onboarding-example/onboarding-quarkus/README.md | 4 ++++
kogito-quarkus-examples/process-business-rules-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-decisions-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-decisions-rest-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-decisions-rules-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-error-handling/README.md | 5 +++++
.../process-infinispan-persistence-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-kafka-avro-multi-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-kafka-multi-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-kafka-persistence-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-kafka-quickstart-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-knative-quickstart-quarkus/README.md | 4 ++++
.../process-mongodb-persistence-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-performance-quarkus/README.md | 5 +++++
.../process-postgresql-persistence-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-quarkus-example/README.md | 5 +++++
kogito-quarkus-examples/process-rest-service-call-quarkus/README.md | 5 +++++
.../process-rest-workitem-multi-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-rest-workitem-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-saga-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-scripts-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-service-calls-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-timer-quarkus/README.md | 5 +++++
.../process-usertasks-custom-lifecycle-quarkus/README.md | 5 +++++
kogito-quarkus-examples/process-usertasks-quarkus/README.md | 5 +++++
.../process-usertasks-timer-quarkus-with-console/README.md | 5 +++++
.../process-usertasks-with-security-oidc-quarkus/README.md | 5 +++++
.../process-usertasks-with-security-quarkus/README.md | 5 +++++
28 files changed, 138 insertions(+)
diff --git
a/kogito-quarkus-examples/onboarding-example/onboarding-quarkus/README.md
b/kogito-quarkus-examples/onboarding-example/onboarding-quarkus/README.md
index 6d91a79e2..054bf1bf0 100644
--- a/kogito-quarkus-examples/onboarding-example/onboarding-quarkus/README.md
+++ b/kogito-quarkus-examples/onboarding-example/onboarding-quarkus/README.md
@@ -17,6 +17,10 @@ mvn clean package quarkus:dev
```
### Compile and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
diff --git a/kogito-quarkus-examples/process-business-rules-quarkus/README.md
b/kogito-quarkus-examples/process-business-rules-quarkus/README.md
index 966243ba0..9b8b02857 100644
--- a/kogito-quarkus-examples/process-business-rules-quarkus/README.md
+++ b/kogito-quarkus-examples/process-business-rules-quarkus/README.md
@@ -87,6 +87,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-decisions-quarkus/README.md
b/kogito-quarkus-examples/process-decisions-quarkus/README.md
index 7714b8c8b..8134d0edb 100644
--- a/kogito-quarkus-examples/process-decisions-quarkus/README.md
+++ b/kogito-quarkus-examples/process-decisions-quarkus/README.md
@@ -144,6 +144,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-decisions-rest-quarkus/README.md
b/kogito-quarkus-examples/process-decisions-rest-quarkus/README.md
index e65fb32fa..4f9916543 100644
--- a/kogito-quarkus-examples/process-decisions-rest-quarkus/README.md
+++ b/kogito-quarkus-examples/process-decisions-rest-quarkus/README.md
@@ -178,6 +178,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-decisions-rules-quarkus/README.md
b/kogito-quarkus-examples/process-decisions-rules-quarkus/README.md
index 67112c8ad..da5ee2f5d 100644
--- a/kogito-quarkus-examples/process-decisions-rules-quarkus/README.md
+++ b/kogito-quarkus-examples/process-decisions-rules-quarkus/README.md
@@ -144,6 +144,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-error-handling/README.md
b/kogito-quarkus-examples/process-error-handling/README.md
index 32817d65a..14973444a 100644
--- a/kogito-quarkus-examples/process-error-handling/README.md
+++ b/kogito-quarkus-examples/process-error-handling/README.md
@@ -91,6 +91,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git
a/kogito-quarkus-examples/process-infinispan-persistence-quarkus/README.md
b/kogito-quarkus-examples/process-infinispan-persistence-quarkus/README.md
index 0c6ccf1e0..b1a45052e 100644
--- a/kogito-quarkus-examples/process-infinispan-persistence-quarkus/README.md
+++ b/kogito-quarkus-examples/process-infinispan-persistence-quarkus/README.md
@@ -123,6 +123,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-kafka-avro-multi-quarkus/README.md
b/kogito-quarkus-examples/process-kafka-avro-multi-quarkus/README.md
index 886e93b4e..0ab8afde4 100644
--- a/kogito-quarkus-examples/process-kafka-avro-multi-quarkus/README.md
+++ b/kogito-quarkus-examples/process-kafka-avro-multi-quarkus/README.md
@@ -122,6 +122,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```
diff --git a/kogito-quarkus-examples/process-kafka-multi-quarkus/README.md
b/kogito-quarkus-examples/process-kafka-multi-quarkus/README.md
index d82455349..4521b4df2 100644
--- a/kogito-quarkus-examples/process-kafka-multi-quarkus/README.md
+++ b/kogito-quarkus-examples/process-kafka-multi-quarkus/README.md
@@ -111,6 +111,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```
diff --git
a/kogito-quarkus-examples/process-kafka-persistence-quarkus/README.md
b/kogito-quarkus-examples/process-kafka-persistence-quarkus/README.md
index 8c1e8b8bd..5e64654c0 100644
--- a/kogito-quarkus-examples/process-kafka-persistence-quarkus/README.md
+++ b/kogito-quarkus-examples/process-kafka-persistence-quarkus/README.md
@@ -107,6 +107,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-kafka-quickstart-quarkus/README.md
b/kogito-quarkus-examples/process-kafka-quickstart-quarkus/README.md
index db4bbe384..2ebc63198 100644
--- a/kogito-quarkus-examples/process-kafka-quickstart-quarkus/README.md
+++ b/kogito-quarkus-examples/process-kafka-quickstart-quarkus/README.md
@@ -111,6 +111,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```
diff --git
a/kogito-quarkus-examples/process-knative-quickstart-quarkus/README.md
b/kogito-quarkus-examples/process-knative-quickstart-quarkus/README.md
index dd8e63dd4..774e0edd8 100644
--- a/kogito-quarkus-examples/process-knative-quickstart-quarkus/README.md
+++ b/kogito-quarkus-examples/process-knative-quickstart-quarkus/README.md
@@ -120,6 +120,10 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
diff --git
a/kogito-quarkus-examples/process-mongodb-persistence-quarkus/README.md
b/kogito-quarkus-examples/process-mongodb-persistence-quarkus/README.md
index 274e6ab13..4c1d628dd 100644
--- a/kogito-quarkus-examples/process-mongodb-persistence-quarkus/README.md
+++ b/kogito-quarkus-examples/process-mongodb-persistence-quarkus/README.md
@@ -121,6 +121,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-performance-quarkus/README.md
b/kogito-quarkus-examples/process-performance-quarkus/README.md
index 8c5c2c4ef..22a9e68b4 100644
--- a/kogito-quarkus-examples/process-performance-quarkus/README.md
+++ b/kogito-quarkus-examples/process-performance-quarkus/README.md
@@ -49,6 +49,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```
diff --git
a/kogito-quarkus-examples/process-postgresql-persistence-quarkus/README.md
b/kogito-quarkus-examples/process-postgresql-persistence-quarkus/README.md
index b56e9a705..6942102c1 100644
--- a/kogito-quarkus-examples/process-postgresql-persistence-quarkus/README.md
+++ b/kogito-quarkus-examples/process-postgresql-persistence-quarkus/README.md
@@ -134,6 +134,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-quarkus-example/README.md
b/kogito-quarkus-examples/process-quarkus-example/README.md
index 432347044..d03a817ac 100644
--- a/kogito-quarkus-examples/process-quarkus-example/README.md
+++ b/kogito-quarkus-examples/process-quarkus-example/README.md
@@ -43,6 +43,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```
diff --git
a/kogito-quarkus-examples/process-rest-service-call-quarkus/README.md
b/kogito-quarkus-examples/process-rest-service-call-quarkus/README.md
index 4db274c00..fef23edc2 100644
--- a/kogito-quarkus-examples/process-rest-service-call-quarkus/README.md
+++ b/kogito-quarkus-examples/process-rest-service-call-quarkus/README.md
@@ -80,6 +80,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git
a/kogito-quarkus-examples/process-rest-workitem-multi-quarkus/README.md
b/kogito-quarkus-examples/process-rest-workitem-multi-quarkus/README.md
index ed307fdb7..05980a906 100644
--- a/kogito-quarkus-examples/process-rest-workitem-multi-quarkus/README.md
+++ b/kogito-quarkus-examples/process-rest-workitem-multi-quarkus/README.md
@@ -47,6 +47,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Compile and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```text
diff --git a/kogito-quarkus-examples/process-rest-workitem-quarkus/README.md
b/kogito-quarkus-examples/process-rest-workitem-quarkus/README.md
index 91c464c7b..6a8ffbd94 100644
--- a/kogito-quarkus-examples/process-rest-workitem-quarkus/README.md
+++ b/kogito-quarkus-examples/process-rest-workitem-quarkus/README.md
@@ -84,6 +84,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-saga-quarkus/README.md
b/kogito-quarkus-examples/process-saga-quarkus/README.md
index 53fa0887e..196595ae5 100644
--- a/kogito-quarkus-examples/process-saga-quarkus/README.md
+++ b/kogito-quarkus-examples/process-saga-quarkus/README.md
@@ -66,6 +66,11 @@ java -jar target/process-saga-quarkus-runner.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```
diff --git a/kogito-quarkus-examples/process-scripts-quarkus/README.md
b/kogito-quarkus-examples/process-scripts-quarkus/README.md
index 13eb9996d..65066692a 100644
--- a/kogito-quarkus-examples/process-scripts-quarkus/README.md
+++ b/kogito-quarkus-examples/process-scripts-quarkus/README.md
@@ -61,6 +61,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-service-calls-quarkus/README.md
b/kogito-quarkus-examples/process-service-calls-quarkus/README.md
index 1c67012d9..d0c4e4f7c 100644
--- a/kogito-quarkus-examples/process-service-calls-quarkus/README.md
+++ b/kogito-quarkus-examples/process-service-calls-quarkus/README.md
@@ -97,6 +97,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-timer-quarkus/README.md
b/kogito-quarkus-examples/process-timer-quarkus/README.md
index 74908c24b..7f8dc8a1c 100644
--- a/kogito-quarkus-examples/process-timer-quarkus/README.md
+++ b/kogito-quarkus-examples/process-timer-quarkus/README.md
@@ -186,6 +186,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git
a/kogito-quarkus-examples/process-usertasks-custom-lifecycle-quarkus/README.md
b/kogito-quarkus-examples/process-usertasks-custom-lifecycle-quarkus/README.md
index 9b18f5c84..a01919344 100644
---
a/kogito-quarkus-examples/process-usertasks-custom-lifecycle-quarkus/README.md
+++
b/kogito-quarkus-examples/process-usertasks-custom-lifecycle-quarkus/README.md
@@ -88,6 +88,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git a/kogito-quarkus-examples/process-usertasks-quarkus/README.md
b/kogito-quarkus-examples/process-usertasks-quarkus/README.md
index ff6548c8b..d8075e48b 100644
--- a/kogito-quarkus-examples/process-usertasks-quarkus/README.md
+++ b/kogito-quarkus-examples/process-usertasks-quarkus/README.md
@@ -75,6 +75,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git
a/kogito-quarkus-examples/process-usertasks-timer-quarkus-with-console/README.md
b/kogito-quarkus-examples/process-usertasks-timer-quarkus-with-console/README.md
index 6ad8af5e3..defb90fcf 100644
---
a/kogito-quarkus-examples/process-usertasks-timer-quarkus-with-console/README.md
+++
b/kogito-quarkus-examples/process-usertasks-timer-quarkus-with-console/README.md
@@ -120,6 +120,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
##### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git
a/kogito-quarkus-examples/process-usertasks-with-security-oidc-quarkus/README.md
b/kogito-quarkus-examples/process-usertasks-with-security-oidc-quarkus/README.md
index 31aee80af..1626d5861 100644
---
a/kogito-quarkus-examples/process-usertasks-with-security-oidc-quarkus/README.md
+++
b/kogito-quarkus-examples/process-usertasks-with-security-oidc-quarkus/README.md
@@ -74,6 +74,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
diff --git
a/kogito-quarkus-examples/process-usertasks-with-security-quarkus/README.md
b/kogito-quarkus-examples/process-usertasks-with-security-quarkus/README.md
index fce12e858..bc5f77fb8 100644
--- a/kogito-quarkus-examples/process-usertasks-with-security-quarkus/README.md
+++ b/kogito-quarkus-examples/process-usertasks-with-security-quarkus/README.md
@@ -54,6 +54,11 @@ java -jar target\quarkus-app\quarkus-run.jar
```
### Package and Run using Local Native Image
+Note that the following configuration property needs to be added to
`application.properties` in order to enable automatic registration of
`META-INF/services` entries required by the workflow engine:
+```
+quarkus.native.auto-service-loader-registration=true
+```
+
Note that this requires GRAALVM_HOME to point to a valid GraalVM installation
```sh
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]