Ask a question
Learn more about TechXchange Dev Days virtual and in-person events here
Share on LinkedIn
mvn io.quarkus:quarkus-maven-plugin:2.16.7.Final:create \
-DprojectGroupId=com.ibm \
-DprojectArtifactId=quick-kogito \
-DprojectVersion=1.0.0-SNAPSHOT \
-DplatformVersion=2.16.7.Final \
-DplatformGroupId=io.quarkus.platform \
-DplatformArtifactId=quarkus-bom \
1 - Add code:
<kogito.bom.group-id>com.ibm.bamoe</kogito.bom.group-id><kogito.bom.artifact-id>bamoe-bom</kogito.bom.artifact-id><kogito.bom.version>9.0.0.Final</kogito.bom.version>
2 - Delete code:
<groupId>${quarkus.platform.group-id}</groupId><artifactId>quarkus-kogito-bom</artifactId><version>${quarkus.platform.version}</version>
3 - Add code:
<groupId>${kogito.bom.group-id}</groupId><artifactId>${kogito.bom.artifact-id}</artifactId><version>${kogito.bom.version}</version>
4 - Add code:
<dependency> <groupId>com.ibm.bamoe</groupId> <artifactId>bamoe-ilmt-compliance-quarkus-pamoe</artifactId></dependency>
mvn clean package
mvn clean compile quarkus:dev
http://localhost:8080/
From this point on, you can create and test your projects via API. Remember to follow the official IBM Business Manager Open Edition documentation to find out what's new. I hope I contributed to the community. Thanks!
#bamoe#opensource#podman#kogito
Thanks a lot @Raul Mariano for this very helpful guide. I noticed that on my Mac Pro (arm) I was stuck with this error:2025-03-17 10:29:02,645 INFO [org.kie.kog.cod.dec.DecisionValidation] (build-56) Decision Table Analysis of table 'Base price' finished with no messages to be reported.assertion failed [found_x86_offset]: no instruction entry found for jit breakpoint at arm address 0x1061eb6ac(TranslationCacheJit.cpp:195 handle_jit_breakpoint)Hence I run the the "mvn clean package" command with -DskipTests and with that all went fine. I just wanted to share with you and other practitioners this my finding, just in case.
Thank you @Raul Mariano for producing such a beautiful document. It helped me to set up my VSCode for BAMOE in my local Windows machine.