driftkit-workflows-examples-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ai.driftkit</groupId> <artifactId>driftkit-workflows-examples-spring-boot-starter</artifactId> <version>0.7.9</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>ai.driftkit</groupId> <artifactId>driftkit-workflows-examples</artifactId> <version>0.7.9</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>driftkit-workflows-examples-spring-boot-starter</artifactId> <name>DriftKit Workflows Examples Spring Boot Starter</name> <description>Spring Boot auto-configuration for DriftKit Workflow Examples</description> <dependencies> <!-- DriftKit Dependencies --> <dependency> <groupId>ai.driftkit</groupId> <artifactId>driftkit-workflows-examples-core</artifactId> </dependency> <!-- Spring Boot --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</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-autoconfigure</artifactId> </dependency> <!-- Lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <!-- Testing --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>