spring-boot-starter-automation-engine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.davidrandoll</groupId> <artifactId>spring-boot-starter-automation-engine</artifactId> <version>1.2.0</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>com.davidrandoll</groupId> <artifactId>automation-engine</artifactId> <version>1.2.0</version> </parent> <artifactId>spring-boot-starter-automation-engine</artifactId> <name>Automation Engine Spring Starter</name> <description> A Spring Boot starter for the Automation Engine, providing essential configurations and dependencies. </description> <properties> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.davidrandoll</groupId> <artifactId>automation-engine-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.davidrandoll</groupId> <artifactId>automation-engine-templating</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.davidrandoll</groupId> <artifactId>automation-engine-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <scope>provided</scope> </dependency> <!-- for the yaml parser --> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>