resiliencia-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia-test</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-test</artifactId>
<packaging>jar</packaging>
<name>Resiliencia :: Test</name>
<description>Test helpers for consumers of the resiliencia library: fake pattern implementations, a manual
clock, and JUnit 5 assertions.
</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>
</dependency>
<dependency>
<groupId>io.github.tec-eli</groupId>
<artifactId>resiliencia-metrics</artifactId>
<version>${project.version}</version>
</dependency>
<!-- JUnit 5 is compile scope: this module ships test helpers built on JUnit -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- This module requires JUnit in its module-info (it ships JUnit-based helpers), which
puts junit-platform-commons on the module path while surefire's launcher stays on the
classpath — a split JUnit platform. Running this module's own tests on the classpath
avoids the conflict. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useModulePath>false</useModulePath>
</configuration>
</plugin>
<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>