resiliencia-compose
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia-compose</artifactId>
<version>1.0.0-beta.1</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.github.tec-eli</groupId>
<artifactId>resiliencia</artifactId>
<version>1.0.0-beta.1</version>
</parent>
<artifactId>resiliencia-compose</artifactId>
<packaging>jar</packaging>
<name>Resiliencia :: Compose</name>
<description>Policy: fluent composition of resiliencia patterns into a single reusable, order-validated
execution pipeline. Zero external dependencies beyond slf4j-api.
</description>
<scm>
<connection>scm:git:https://github.com/tec-eli/resiliencia.git</connection>
<developerConnection>scm:git:https://github.com/tec-eli/resiliencia.git</developerConnection>
<url>https://github.com/tec-eli/resiliencia</url>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia-patterns</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>