automation-engine-spring-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.davidrandoll</groupId> <artifactId>automation-engine-spring-web</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>automation-engine-spring-web</artifactId> <name>Automation Engine Spring Web</name> <description> This module provides Spring Web support for the Automation Engine, enabling web-based automation tasks and workflows. </description> <properties> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <spring-web-captor.version>1.0.0</spring-web-captor.version> </properties> <dependencies> <dependency> <groupId>com.davidrandoll</groupId> <artifactId>spring-boot-starter-automation-engine</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.davidrandoll</groupId> <artifactId>automation-engine-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.davidrandoll</groupId> <artifactId>spring-web-captor</artifactId> <version>${spring-web-captor.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>