DMN Engine Standalone Import

Hi guys,

I am quite new to DMN and I found your promising DMN Engine on GitHub.

Unfortunately I am not able to integrate it into my Maven project.

I followed the simple instruction on GitHub and added the following dependecy to my pom.xml:

<dependency> <groupId>org.camunda.bpm.dmn</groupId> <artifactId>camunda-engine-dmn</artifactId> <version>7.6.0-alpha3</version> </dependency>

I also tried version 7.5.0.

However mvn clean installs always fail with the following message:

Failed to read artifact descriptor for org.camunda.bpm.dmn:camunda-engine-dmn:jar:7.6.0-alpha3: Could not find artifact org.camunda.commons:camunda-commons-bom:pom:1.4.0-alpha1 in central (http://repo.maven.apache.org/maven2) -> [Help 1]

Are there any additional dependencies required?

Or can I find a .jar with all the required dependencies to run the standalone DMN Engine?

Thanks in advance for any kind of feedback.

Cheers,
Daniel

Hi,

sorry the camunda-commons 1.4.0-alpha1 artifact was not released correctly on maven central. That is why it is missing. To get the artifact you need to use the camunda-nexus for now: https://github.com/camunda/camunda-bpm-platform#building-camunda-bpm-platform

We already released a new version of camunda-commons to maven central but it was not updated in the dmn engine by now. I created a ticket for this CAM-6752.

Thanks for reporting this issue.

Cheers,
Sebastian

Hi Sebastian,

thanks for the information and the pointers, this solved my issue.

Cheers,
Daniel