Download spring-retry-1.1.0.release.jar file

Introduction

You can download spring-retry-1.1.0.release.jar in this page.

License

Apache 2.0

Type List

spring-retry-1.1.0.release.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.springframework.retry/spring-retry/pom.properties
META-INF/maven/org.springframework.retry/spring-retry/pom.xml
org.springframework.classify.BackToBackPatternClassifier.class
org.springframework.classify.BinaryExceptionClassifier.class
org.springframework.classify.Classifier.class
org.springframework.classify.ClassifierAdapter.class
org.springframework.classify.ClassifierSupport.class
org.springframework.classify.PatternMatcher.class
org.springframework.classify.PatternMatchingClassifier.class
org.springframework.classify.SubclassClassifier.class
org.springframework.classify.annotation.Classifier.class
org.springframework.classify.util.AnnotationMethodResolver.class
org.springframework.classify.util.MethodInvoker.class
org.springframework.classify.util.MethodInvokerUtils.class
org.springframework.classify.util.MethodResolver.class
org.springframework.classify.util.SimpleMethodInvoker.class
org.springframework.retry.ExhaustedRetryException.class
org.springframework.retry.RecoveryCallback.class
org.springframework.retry.RetryCallback.class
org.springframework.retry.RetryContext.class
org.springframework.retry.RetryException.class
org.springframework.retry.RetryListener.class
org.springframework.retry.RetryOperations.class
org.springframework.retry.RetryPolicy.class
org.springframework.retry.RetryState.class
org.springframework.retry.RetryStatistics.class
org.springframework.retry.TerminatedRetryException.class
org.springframework.retry.annotation.AnnotationAwareRetryOperationsInterceptor.class
org.springframework.retry.annotation.Backoff.class
org.springframework.retry.annotation.EnableRetry.class
org.springframework.retry.annotation.Recover.class
org.springframework.retry.annotation.RecoverAnnotationRecoveryHandler.class
org.springframework.retry.annotation.RetryConfiguration.class
org.springframework.retry.annotation.Retryable.class
org.springframework.retry.backoff.BackOffContext.class
org.springframework.retry.backoff.BackOffInterruptedException.class
org.springframework.retry.backoff.BackOffPolicy.class
org.springframework.retry.backoff.ExponentialBackOffPolicy.class
org.springframework.retry.backoff.ExponentialRandomBackOffPolicy.class
org.springframework.retry.backoff.FixedBackOffPolicy.class
org.springframework.retry.backoff.NoBackOffPolicy.class
org.springframework.retry.backoff.ObjectWaitSleeper.class
org.springframework.retry.backoff.Sleeper.class
org.springframework.retry.backoff.SleepingBackOffPolicy.class
org.springframework.retry.backoff.StatelessBackOffPolicy.class
org.springframework.retry.backoff.ThreadWaitSleeper.class
org.springframework.retry.backoff.UniformRandomBackOffPolicy.class
org.springframework.retry.context.RetryContextSupport.class
org.springframework.retry.interceptor.MethodArgumentsKeyGenerator.class
org.springframework.retry.interceptor.MethodInvocationRecoverer.class
org.springframework.retry.interceptor.NewMethodArgumentsIdentifier.class
org.springframework.retry.interceptor.RetryInterceptorBuilder.class
org.springframework.retry.interceptor.RetryOperationsInterceptor.class
org.springframework.retry.interceptor.Retryable.class
org.springframework.retry.interceptor.StatefulRetryOperationsInterceptor.class
org.springframework.retry.listener.RetryListenerSupport.class
org.springframework.retry.policy.AlwaysRetryPolicy.class
org.springframework.retry.policy.CompositeRetryPolicy.class
org.springframework.retry.policy.ExceptionClassifierRetryPolicy.class
org.springframework.retry.policy.MapRetryContextCache.class
org.springframework.retry.policy.NeverRetryPolicy.class
org.springframework.retry.policy.RetryCacheCapacityExceededException.class
org.springframework.retry.policy.RetryContextCache.class
org.springframework.retry.policy.SimpleRetryPolicy.class
org.springframework.retry.policy.SoftReferenceMapRetryContextCache.class
org.springframework.retry.policy.TimeoutRetryPolicy.class
org.springframework.retry.support.DefaultRetryState.class
org.springframework.retry.support.RetrySimulation.class
org.springframework.retry.support.RetrySimulator.class
org.springframework.retry.support.RetrySynchronizationManager.class
org.springframework.retry.support.RetryTemplate.class

Pom

spring-retry-1.1.0.release.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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>org.springframework.retry</groupId>
	<artifactId>spring-retry</artifactId>
	<version>1.1.0.RELEASE</version>
	<name>Spring Retry</name>
	<description><![CDATA[Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize.  For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exception, and with a fixed or exponential backoff.
    ]]></description>
	<url>http://www.springsource.org</url>
	<organization>
		<name>SpringSource</name>
		<url>http://www.springsource.com</url>
	</organization>
	<licenses>
		<license>
			<name>Apache 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>
	<packaging>jar</packaging>
	<properties>
		<maven.test.failure.ignore>true</maven.test.failure.ignore>
		<spring.framework.version>4.0.3.RELEASE</spring.framework.version>
	</properties>
	<profiles>
		<profile>
			<id>strict</id>
			<properties>
				<maven.test.failure.ignore>false</maven.test.failure.ignore>
			</properties>
		</profile>
		<profile>
			<id>fast</id>
			<properties>
				<maven.test.skip>true</maven.test.skip>
				<maven.javadoc.skip>true</maven.javadoc.skip>
			</properties>
		</profile>
		<profile>
			<id>staging</id>
			<distributionManagement>
				<site>
					<id>spring-site-staging</id>
					<url>file:///${java.io.tmpdir}/spring-retry/docs</url>
				</site>
				<repository>
					<id>spring-milestone-staging</id>
					<url>file:///${java.io.tmpdir}/spring-retry/milestone</url>
				</repository>
				<snapshotRepository>
					<id>spring-snapshot-staging</id>
					<url>file:///${java.io.tmpdir}/spring-retry/snapshot</url>
				</snapshotRepository>
			</distributionManagement>
		</profile>
		<profile>
			<id>milestone</id>
			<distributionManagement>
			  <repository>
				<id>repo.spring.io</id>
				<name>Spring Milestone Repository</name>
				<url>https://repo.spring.io/libs-milestone-local</url>
			  </repository>
			</distributionManagement>
		</profile>
		<profile>
			<id>central</id>
			<distributionManagement>
			  <snapshotRepository>
				<id>sonatype-nexus-snapshots</id>
				<name>Sonatype Nexus Snapshots</name>
				<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
			  </snapshotRepository>
			  <repository>
				<id>sonatype-nexus-staging</id>
				<name>Nexus Release Repository</name>
				<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
			  </repository>
			</distributionManagement>
			<build>
			  <plugins>
				<plugin>
				  <groupId>org.apache.maven.plugins</groupId>
				  <artifactId>maven-gpg-plugin</artifactId>
				  <executions>
					<execution>
					  <id>sign-artifacts</id>
					  <phase>verify</phase>
					  <goals>
						<goal>sign</goal>
					  </goals>
					</execution>
				  </executions>
				</plugin>
			  </plugins>
			</build>
		</profile>
	</profiles>

	<scm>
		<url>http://github.com/spring-projects/spring-retry</url>
		<connection>scm:git:git://github.com/spring-projects/spring-retry.git</connection>
		<developerConnection>scm:git:ssh://git@github.com/spring-projects/spring-retry.git</developerConnection>
	  <tag>HEAD</tag>
  </scm>

	<developers>
		<developer>
			<id>dsyer</id>
			<name>Dave Syer</name>
			<email>dsyer@gopivotal.com</email>
		</developer>
	</developers>

	<distributionManagement>
		<!-- see 'staging' profile for dry-run deployment settings -->
		<downloadUrl>http://www.springsource.com/download/community
		</downloadUrl>
		<site>
			<id>spring-docs</id>
			<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-retry/docs/${project.version}
			</url>
		</site>
		<repository>
			<id>repo.spring.io</id>
			<name>Spring Release Repository</name>
			<url>https://repo.spring.io/libs-release-local</url>
		</repository>
		<snapshotRepository>
			<id>repo.spring.io</id>
			<name>Spring Snapshot Repository</name>
			<url>https://repo.spring.io/libs-snapshot-local</url>
		</snapshotRepository>
	</distributionManagement>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<version>2.3</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>aspectjrt</artifactId>
			<version>1.6.6</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>aspectjweaver</artifactId>
			<version>1.7.4</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-test</artifactId>
			<version>${spring.framework.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>${spring.framework.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-tx</artifactId>
			<version>${spring.framework.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.14</version>
			<optional>true</optional>
			<scope>runtime</scope>
		</dependency>
	</dependencies>

	<build>
		<pluginManagement>
			<plugins>
                <plugin>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-release-plugin</artifactId>
                  <version>2.3</version>
                </plugin>
				<plugin>
					<artifactId>maven-assembly-plugin</artifactId>
					<inherited>false</inherited>
					<configuration>
						<descriptorRefs>
							<descriptorRef>project</descriptorRef>
						</descriptorRefs>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<!--forkMode>pertest</forkMode -->
					<includes>
						<include>**/*Tests.java</include>
					</includes>
					<excludes>
						<exclude>**/Abstract*.java</exclude>
					</excludes>
				</configuration>
			</plugin>
			<plugin>
			  <artifactId>maven-javadoc-plugin</artifactId>
			  <executions>
				<execution>
				  <id>javadoc</id>
				  <goals>
					<goal>jar</goal>
				  </goals>
				  <phase>package</phase>
				</execution>
			  </executions>
			</plugin>
			<plugin>
			  <artifactId>maven-source-plugin</artifactId>
			  <executions>
				<execution>
				  <id>attach-sources</id>
				  <goals>
					<goal>jar</goal>
				  </goals>
				  <phase>package</phase>
				</execution>
			  </executions>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>org.springframework.retry</groupId>
   <artifactId>spring-retry</artifactId>
   <version>1.1.0.release</version>
</dependency>

Download

If you think the following spring-retry-1.1.0.release.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download spring-retry-1.1.0.release.jar file




PreviousNext

Related