worker-embedded
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.mateu.workflow</groupId>
<artifactId>worker-embedded</artifactId>
<version>2.21.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>
<parent>
<groupId>io.mateu.workflow</groupId>
<artifactId>eventconductor</artifactId>
<version>2.21.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>worker-embedded</artifactId>
<packaging>jar</packaging>
<name>worker-embedded</name>
<properties>
<jacoco.line.minimum>0.80</jacoco.line.minimum>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- The transport-agnostic runtime this adapter plugs the in-process engine into. -->
<dependency>
<groupId>io.mateu.workflow</groupId>
<artifactId>worker-api</artifactId>
<version>2.21.0</version>
</dependency>
<!-- The engine, whose EmbeddedTaskExecutor port this implements and whose
UpdateStepExecutionUseCase it calls back. Optional: in embedded mode the engine is
already in the process, so we compile against it without forcing it transitively. The
autoconfig is gated on UpdateStepExecutionUseCase being present. -->
<dependency>
<groupId>io.mateu.workflow</groupId>
<artifactId>workflow-engine</artifactId>
<version>2.21.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>