spring-zeebe-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.zeebe.spring</groupId> <artifactId>spring-zeebe-starter</artifactId> <version>1.0.0-rc1</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.zeebe.spring.root</groupId> <artifactId>spring-zeebe-client-root</artifactId> <version>1.0.0-rc1</version> </parent> <groupId>io.zeebe.spring</groupId> <artifactId>spring-zeebe-starter</artifactId> <name>lib/spring-zeebe-client-starter</name> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>io.zeebe.spring</groupId> <artifactId>spring-zeebe</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <!-- we need to filter the resources, so placeholders in banner.txt get replaced --> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> </project>