You can download spring-cache-3.5.0.jar in this page.
MIT License
spring-cache-3.5.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.google.code.simple-spring-memcached/spring-cache/pom.properties META-INF/maven/com.google.code.simple-spring-memcached/spring-cache/pom.xml com.google.code.ssm.spring.ExtendedSSMCacheManager.class com.google.code.ssm.spring.SSMCache.class com.google.code.ssm.spring.SSMCacheManager.class
spring-cache-3.5.0.pom file content.
<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>com.google.code.simple-spring-memcached</groupId> <artifactId>simple-spring-memcached-parent</artifactId> <version>3.5.0</version> </parent> <artifactId>spring-cache</artifactId> <packaging>jar</packaging> <name>spring-cache</name> <description>Integration with Spring 3.1 cache abstraction</description> <url>http://github.com/ragnor/simple-spring-memcached</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <id>ragnor84</id> <name>Jakub Bia?ek</name> <roles> <role>Owner</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>Project Google group</name> <post>simple-spring-memecached@googlegroups.com</post> <subscribe>simple-spring-memecached@googlegroups.com</subscribe> <unsubscribe>simple-spring-memecached@googlegroups.com</unsubscribe> <archive>http://groups.google.com/group/simple-spring-memecached</archive> </mailingList> </mailingLists> <issueManagement> <system>github</system> <url>http://github.com/ragnor/simple-spring-memcached/issues</url> </issueManagement> <ciManagement> <system>jenkins</system> <url>https://ragnor.ci.cloudbees.com/</url> </ciManagement> <dependencies> <dependency> <groupId>com.google.code.simple-spring-memcached</groupId> <artifactId>simple-spring-memcached</artifactId> <version>${project.version}</version> </dependency> <!-- overwrite all spring dependencies to use 3.1.x --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring31.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring31.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring31.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring31.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <sourcepath>target/generated-sources/delombok</sourcepath> <excludePackageNames>com.google.code.ssm.test.*,com.google.code.ssm.spring.test.*</excludePackageNames> <links> <link>http://docs.spring.io/spring/docs/3.0.x/javadoc-api/</link> <link>http://docs.spring.io/spring/docs/3.1.x/javadoc-api/</link> <link>http://fnil.net/docs/xmemcached/</link> <link>http://docs.oracle.com/javase/6/docs/api/</link> </links> <doclet>org.jboss.apiviz.APIviz</doclet> <docletArtifact> <groupId>org.jboss.apiviz</groupId> <artifactId>apiviz</artifactId> <version>${apiviz.version}</version> </docletArtifact> <useStandardDocletOptions>true</useStandardDocletOptions> <charset>UTF-8</charset> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <breakiterator>true</breakiterator> <version>true</version> <author>true</author> <keywords>true</keywords> <show>package</show> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.projectlombok</groupId> <artifactId>lombok-maven-plugin</artifactId> <version>${lombok-maven-plugin.version}</version> <executions> <execution> <id>delombok</id> <phase>generate-sources</phase> <goals> <goal>delombok</goal> </goals> <configuration> <verbose>true</verbose> </configuration> </execution> </executions> <configuration> <addOutputDirectory>false</addOutputDirectory> <sourceDirectory>src/main/java</sourceDirectory> </configuration> <dependencies> <dependency> <groupId>sun.jdk</groupId> <artifactId>tools</artifactId> <version>1.6</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jenkins</id> <activation> <property> <name>BUILD_NUMBER</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <executions> <execution> <phase>test</phase> <goals> <goal>cobertura</goal> </goals> <configuration> <format>xml</format> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <executions> <execution> <phase>test</phase> <goals> <goal>findbugs</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>com.google.code.simple-spring-memcached</groupId> <artifactId>spring-cache</artifactId> <version>3.5.0</version> </dependency>
If you think the following spring-cache-3.5.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download spring-cache-3.5.0.jar file