Download spring-boot-starter-redis-1.4.1.release.jar file

Introduction

You can download spring-boot-starter-redis-1.4.1.release.jar in this page.

License

Apache Open Source

Type List

spring-boot-starter-redis-1.4.1.release.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.springframework.boot/spring-boot-starter-redis/pom.properties
META-INF/maven/org.springframework.boot/spring-boot-starter-redis/pom.xml
META-INF/spring.factories
META-INF/spring.provides
org.springframework.boot.starter.redis.RedisStarterDeprecationWarningAutoConfiguration.class

Pom

spring-boot-starter-redis-1.4.1.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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starters</artifactId>
		<version>1.4.1.RELEASE</version>
	</parent>
	<artifactId>spring-boot-starter-redis</artifactId>
	<name>spring-boot-starter-redis (DEPRECATED)</name>
	<description>Starter for using Redis key-value data store with Spring Data Redis and
		the Jedis client. Deprecated as of 1.4 in favor of spring-boot-starter-data-redis</description>
	<url>http://projects.spring.io/spring-boot/</url>
	<organization>
		<name>Pivotal Software, Inc.</name>
		<url>http://www.spring.io</url>
	</organization>
	<properties>
		<main.basedir>${basedir}/../..</main.basedir>
	</properties>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.data</groupId>
			<artifactId>spring-data-redis</artifactId>
		</dependency>
		<dependency>
			<groupId>redis.clients</groupId>
			<artifactId>jedis</artifactId>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.basepom.maven</groupId>
				<artifactId>duplicate-finder-maven-plugin</artifactId>
				<executions>
					<execution>
						<id>duplicate-dependencies</id>
						<phase>validate</phase>
						<goals>
							<goal>check</goal>
						</goals>
						<configuration>
							<ignoredResourcePatterns>
								<ignoredResourcePattern>changelog.txt</ignoredResourcePattern>
							</ignoredResourcePatterns>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-redis</artifactId>
   <version>1.4.1.release</version>
</dependency>

Download

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



Download spring-boot-starter-redis-1.4.1.release.jar file




PreviousNext

Related