external-failsafe
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.testifyproject.external</groupId>
<artifactId>external-failsafe</artifactId>
<version>1.0.6</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/maven-v4_0_0.xsd">
<parent>
<artifactId>external</artifactId>
<groupId>org.testifyproject.external</groupId>
<version>1.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>external-failsafe</artifactId>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<relocations>
<relocation>
<pattern>net.jodah.failsafe</pattern>
<shadedPattern>org.testifyproject.failsafe</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<failsafe.version>1.0.4</failsafe.version>
</properties>
</project>