You can download failsafe-1.0.0.jar in this page.
Apache License, Version 2.0
failsafe-1.0.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/net.jodah/failsafe/pom.properties META-INF/maven/net.jodah/failsafe/pom.xml net.jodah.failsafe.AbstractExecution.class net.jodah.failsafe.AsyncExecution.class net.jodah.failsafe.AsyncFailsafe.class net.jodah.failsafe.AsyncFailsafeConfig.class net.jodah.failsafe.CircuitBreaker.class net.jodah.failsafe.CircuitBreakerOpenException.class net.jodah.failsafe.Execution.class net.jodah.failsafe.ExecutionContext.class net.jodah.failsafe.Failsafe.class net.jodah.failsafe.FailsafeConfig.class net.jodah.failsafe.FailsafeException.class net.jodah.failsafe.FailsafeFuture.class net.jodah.failsafe.Functions.class net.jodah.failsafe.Listeners.class net.jodah.failsafe.Predicates.class net.jodah.failsafe.RetryPolicy.class net.jodah.failsafe.SyncFailsafe.class net.jodah.failsafe.event.ContextualResultListener.class net.jodah.failsafe.function.AsyncCallable.class net.jodah.failsafe.function.AsyncRunnable.class net.jodah.failsafe.function.BiPredicate.class net.jodah.failsafe.function.CheckedBiConsumer.class net.jodah.failsafe.function.CheckedBiFunction.class net.jodah.failsafe.function.CheckedConsumer.class net.jodah.failsafe.function.CheckedFunction.class net.jodah.failsafe.function.CheckedRunnable.class net.jodah.failsafe.function.ContextualCallable.class net.jodah.failsafe.function.ContextualRunnable.class net.jodah.failsafe.function.Predicate.class net.jodah.failsafe.internal.CircuitBreakerStats.class net.jodah.failsafe.internal.CircuitState.class net.jodah.failsafe.internal.ClosedState.class net.jodah.failsafe.internal.HalfOpenState.class net.jodah.failsafe.internal.OpenState.class net.jodah.failsafe.internal.util.Assert.class net.jodah.failsafe.internal.util.CancellableFuture.class net.jodah.failsafe.internal.util.CircularBitSet.class net.jodah.failsafe.internal.util.ReentrantCircuit.class net.jodah.failsafe.util.Duration.class net.jodah.failsafe.util.Ratio.class net.jodah.failsafe.util.concurrent.DefaultScheduledFuture.class net.jodah.failsafe.util.concurrent.Scheduler.class net.jodah.failsafe.util.concurrent.Schedulers.class
failsafe-1.0.0.pom file content.
<?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>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>net.jodah</groupId> <artifactId>failsafe</artifactId> <version>1.0.0</version> <name>Failsafe</name> <url>http://github.com/jhalterman/failsafe/</url> <properties> <devCompileVersion>1.8</devCompileVersion> <releaseCompileVersion>1.6</releaseCompileVersion> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Jonathan Halterman</name> <url>http://jodah.net</url> </developer> </developers> <scm> <connection>scm:git:git@github.com:jhalterman/failsafe.git</connection> <developerConnection>scm:git:git@github.com:jhalterman/failsafe.git</developerConnection> <url>http://github.com/jhalterman/failsafe/</url> </scm> <dependencies> <!-- Test Dependencies --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.9.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.0.52-beta</version> <scope>test</scope> </dependency> <dependency> <groupId>net.jodah</groupId> <artifactId>concurrentunit</artifactId> <version>0.4.2</version> <scope>test</scope> </dependency> <!-- Examples dependencies --> <dependency> <groupId>io.reactivex</groupId> <artifactId>rxjava</artifactId> <version>1.0.12</version> <scope>test</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.0.21.Final</version> <scope>test</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <version>3.0.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>${devCompileVersion}</source> <target>${devCompileVersion}</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <releaseProfiles>release</releaseProfiles> <arguments>-Prelease</arguments> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.0.1</version> <extensions>true</extensions> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <supportedProjectTypes> <supportedProjectType>jar</supportedProjectType> <supportedProjectType>bundle</supportedProjectType> </supportedProjectTypes> <instructions> <Implementation-Title>${project.description}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Bundle-Name>Failsafe</Bundle-Name> <Bundle-SymbolicName>net.jodah.failsafe</Bundle-SymbolicName> <Export-Package>net.jodah.failsafe*;version=1.0</Export-Package> <Import-Package>*</Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <author>false</author> <show>public</show> <excludePackageNames>*.internal</excludePackageNames> <additionalparam> -Xdoclint:none -notimestamp -link http://docs.oracle.com/javase/8/docs/api/ </additionalparam> </configuration> </plugin> <!-- Coverage --> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.2.201409121644</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <executions> <execution> <id>default-compile</id> <configuration> <compilerArguments> <source>${releaseCompileVersion}</source> <target>${releaseCompileVersion}</target> </compilerArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <goals>deploy nexus-staging:release</goals> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>net.jodah</groupId> <artifactId>failsafe</artifactId> <version>1.0.0</version> </dependency>
If you think the following failsafe-1.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download failsafe-1.0.0.jar file