Spymemcached.
A client library for memcached..
Here is the list of declaration for spymemcached. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.spy</groupId> <artifactId>spymemcached</artifactId> <version>2.10.2</version> </dependency>
If you think this Maven repository POM file listing for spymemcached is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The spymemcached-2.10.2 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | log4j 1.2.16 Apache Log4j 1.2 | 683 |
Log | slf4j-api 1.7.5 The slf4j API | 610 |
Development | metrics-core 3.0.1 Metrics is a Java library which gives you unparalleled insight into what your code does in production. Metrics provides a powerful toolkit of ways to measure the behavior of critical components in your production environment. | 34 |
Here is the content of the POM file.
<?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> <groupId>net.spy</groupId> <artifactId>spymemcached</artifactId> <packaging>jar</packaging> <version>2.10.2</version> <name>Spymemcached</name> <description>A client library for memcached.</description> <url>http://www.couchbase.org/code/couchbase/java</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/couchbase/spymemcached</url> <connection>scm:git:git://github.com/couchbase/spymemcached.git</connection> </scm> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.5</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>3.0.3.RELEASE</version> <optional>true</optional> </dependency> <dependency> <groupId>com.codahale.metrics</groupId> <artifactId>metrics-core</artifactId> <version>3.0.1</version> <optional>true</optional> </dependency> </dependencies> </project>