zeebe-dmn-worker
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.zeebe</groupId> <artifactId>zeebe-dmn-worker</artifactId> <version>1.2.0</version> </dependency>
<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> <name>Zeebe DMN extension</name> <groupId>io.zeebe</groupId> <artifactId>zeebe-dmn-worker</artifactId> <version>1.2.0</version> <packaging>jar</packaging> <parent> <groupId>org.camunda.community</groupId> <artifactId>community-hub-release-parent</artifactId> <version>1.2.2</version> <relativePath /> </parent> <dependencyManagement> <dependencies> <dependency> <groupId>io.camunda</groupId> <artifactId>zeebe-bom</artifactId> <version>${version.zeebe}</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${version.spring.boot}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <properties> <version.zeebe>1.2.7</version.zeebe> <version.zeebe.spring>1.2.7</version.zeebe.spring> <version.dmn>7.16.0</version.dmn> <version.spring.boot>2.6.1</version.spring.boot> <!-- release parent settings --> <version.java>11</version.java> <java.version>${version.java}</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <nexus.snapshot.repository> https://app.camunda.com/nexus/content/repositories/zeebe-io-snapshots/ </nexus.snapshot.repository> <nexus.release.repository>https://app.camunda.com/nexus/content/repositories/zeebe-io/ </nexus.release.repository> <plugin.version.javadoc>3.1.1</plugin.version.javadoc> <!-- disable jdk8 javadoc checks on release build --> <additionalparam>-Xdoclint:none</additionalparam> </properties> <dependencies> <!-- spring deps--> <dependency> <groupId>io.camunda</groupId> <artifactId>spring-zeebe-starter</artifactId> <version>${version.zeebe.spring}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mustache</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.camunda.bpm.dmn</groupId> <artifactId>camunda-engine-dmn</artifactId> <version>${version.dmn}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.8.2</version> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> <version>3.21.0</version> </dependency> <dependency> <groupId>io.zeebe</groupId> <artifactId>zeebe-test-container</artifactId> <scope>test</scope> <version>3.2.0</version> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <version>1.16.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>${version.java}</source> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.google.cloud.tools</groupId> <artifactId>jib-maven-plugin</artifactId> <version>3.1.4</version> <executions> <execution> <phase>deploy</phase> <goals> <goal>build</goal> </goals> </execution> </executions> <configuration> <to> <image>ghcr.io/camunda-community-hub/zeebe-dmn-worker</image> <tags>${project.version}</tags> </to> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>community-action-maven-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <!-- Prevent gpg from using pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> <repositories> <repository> <id>zeebe</id> <name>zeebe repository</name> <url>https://app.camunda.com/nexus/content/repositories/zeebe-io/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>zeebe-snapshots</id> <name>zeebe snapshot repository</name> <url>https://app.camunda.com/nexus/content/repositories/zeebe-io-snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <scm> <url>https://github.com/camunda-community-hub/zeebe-dmn-worker</url> <connection>scm:git:git@github.com:camunda-community-hub/zeebe-dmn-worker.git</connection> <developerConnection>scm:git:git@github.com:camunda-community-hub/zeebe-dmn-worker.git</developerConnection> <tag>HEAD</tag> </scm> </project>