jedis-pojo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.interact</groupId> <artifactId>jedis-pojo</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.interact</groupId> <artifactId>jedis-pojo</artifactId> <version>1.0.0</version> <name>jedis-pojo</name> <description>Simple self-loading pojo cache service based on Jedis.</description> <url>https://github.com/bascan/jedis-pojo</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>bascan</id> <name>Bas Cancrinus</name> </developer> </developers> <scm> <connection>scm:git:https://github.com/bascan/jedis-pojo.git</connection> <developerConnection>scm:git:https://github.com/bascan/jedis-pojo.git</developerConnection> <url>https://github.com/bascan/jedis-pojo.git</url> </scm> <dependencies> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.7.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.6.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.8</version> <scope>test</scope> </dependency> </dependencies> </project>