lib-durable-tool-execution
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.frtu.libs</groupId>
<artifactId>lib-durable-tool-execution</artifactId>
<version>2.0.17</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>com.github.frtu.libs</groupId>
<artifactId>workflows</artifactId>
<version>2.0.17</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>lib-durable-tool-execution</artifactId>
<properties>
<temporal.version>1.25.1</temporal.version> <!-- 2024-08-22 -->
</properties>
<dependencies>
<!--Internal projects -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>lib-action-tools</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>lib-serdes-json</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>lib-spring-boot-ai-os</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<!-- Test -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>lib-spring-boot-tools</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>test-sample-tools</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!-- Temporal -->
<dependency>
<groupId>io.temporal</groupId>
<artifactId>temporal-sdk</artifactId>
</dependency>
<dependency>
<groupId>io.temporal</groupId>
<artifactId>temporal-kotlin</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>test-containers-temporalite</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!-- ASYNCHRONOUS-->
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
</dependency>
<!--===========================-->
<!-- SPRING BOOT -->
<!--===========================-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<!-- Web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-reactor</artifactId>
</dependency>
<!--===========================-->
<!-- Platform - Log -->
<!--===========================-->
<!-- Logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<!--https://kotlinlang.org/docs/reference/compiler-plugins.html-->
<configuration>
<compilerPlugins>
<plugin>spring</plugin>
<!-- https://kotlinlang.org/docs/no-arg-plugin.html -->
<plugin>no-arg</plugin>
<!-- https://kotlinlang.org/docs/all-open-plugin.html -->
<plugin>all-open</plugin>
</compilerPlugins>
<pluginOptions>
<option>no-arg:annotation=com.github.frtu.kotlin.utils.data.ValueObject</option>
<option>all-open:annotation=com.github.frtu.kotlin.utils.data.ValueObject</option>
</pluginOptions>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.temporal</groupId>
<artifactId>temporal-bom</artifactId>
<version>${temporal.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>