camunda-dmn-engine-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.holunda.camunda-api</groupId> <artifactId>camunda-dmn-engine-api</artifactId> <version>2025.07.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.holunda.camunda-api</groupId> <artifactId>camunda-api-parent</artifactId> <version>2025.07.1</version> </parent> <artifactId>camunda-dmn-engine-api</artifactId> <name>camunda-api Extension / DMN Engine</name> <dependencies> <dependency> <groupId>org.camunda.bpm.model</groupId> <artifactId>camunda-dmn-model</artifactId> </dependency> <dependency> <groupId>org.camunda.commons</groupId> <artifactId>camunda-commons-typed-values</artifactId> </dependency> </dependencies> <build> <sourceDirectory>src/main/java</sourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-dmn-engine-sources</id> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.camunda.bpm.dmn</groupId> <artifactId>camunda-engine-dmn</artifactId> <version>${camunda.version}</version> <type>jar</type> <classifier>sources</classifier> <overWrite>false</overWrite> <outputDirectory>${project.build.directory}/generated-sources/dmn-engine/src/main/java</outputDirectory> <includes> org/camunda/bpm/dmn/engine/*.java, org/camunda/bpm/dmn/engine/delegate/*.java, org/camunda/bpm/dmn/engine/spi/DmnEngineMetricCollector.java, </includes> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <!-- Additional source folders --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/dmn-engine/src/main/java</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>