devutility.external.redis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.eagle6688</groupId>
<artifactId>devutility.external.redis</artifactId>
<version>3.1.9</version>
</dependency><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.github.eagle6688</groupId>
<artifactId>devutility.external</artifactId>
<version>1.1.13</version>
</parent>
<artifactId>devutility.external.redis</artifactId>
<version>3.1.9</version>
<packaging>jar</packaging>
<description>Some utilities for Jedis</description>
<url>https://github.com/eagle6688/devutility.external.redis</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<!-- License -->
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<!-- License end -->
<!-- Developers -->
<developers>
<developer>
<name>Aldwin Su</name>
<email>fangyansu@163.com</email>
<timezone>+8</timezone>
</developer>
</developers>
<!-- Developers end -->
<!-- scm -->
<scm>
<connection>scm:git:https://github.com/eagle6688/devutility.external.redis.git</connection>
<developerConnection>scm:git:https://github.com/eagle6688/devutility.external.redis.git</developerConnection>
<url>https://github.com/eagle6688/devutility.external.redis</url>
<tag>v${project.version}</tag>
</scm>
<!-- scm end -->
<!-- distributionManagement -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<name>Maven Central Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<!-- distributionManagement end -->
<dependencies>
<!-- Redis -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<!-- Redis end -->
<!-- devutility -->
<dependency>
<groupId>com.github.eagle6688</groupId>
<artifactId>devutility.external.json</artifactId>
<scope>provided</scope>
</dependency>
<!-- devutility end -->
<!-- Test -->
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.10.1</version>
<scope>test</scope>
</dependency>
<!-- Test end -->
</dependencies>
</project>