1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/secondriver-redis-cache

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
В этом репозитории не указан файл с открытой лицензией (LICENSE). При использовании обратитесь к конкретному описанию проекта и его зависимостям в коде.
Клонировать/Скачать
pom.xml 3.2 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
secondriver Отправлено 10.08.2015 09:42 5191d97
<?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>secondriver</groupId>
<artifactId>redis-cache</artifactId>
<version>1.0-ga</version>
<packaging>jar</packaging>
<url>http://git.oschina.net/secondriver/redis-cache</url>
<description>
Redis-Cache use jedis client and redis server building a cache system.
</description>
<developers>
<developer>
<id>secondriver</id>
<email>secondriver@yeah.net</email>
<name>secondriver</name>
<roles>
<role>Creator</role>
<role>Developer</role>
</roles>
<url>https://aiilive.blog.51cto.com</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jedis.version>2.7.2</jedis.version>
<fastjson.version>1.2.5</fastjson.version>
<junit.version>4.12</junit.version>
<slf4j-api.version>1.7.10</slf4j-api.version>
<slf4j-log4j12.version>1.7.10</slf4j-log4j12.version>
<jfinal.version>2.0</jfinal.version>
</properties>
<dependencies>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j-log4j12.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jfinal</groupId>
<artifactId>jfinal</artifactId>
<version>${jfinal.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<target>1.8</target>
<source>1.8</source>
</configuration>
</plugin>
</plugins>
</build>
</project>

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/secondriver-redis-cache.git
git@api.gitlife.ru:oschina-mirror/secondriver-redis-cache.git
oschina-mirror
secondriver-redis-cache
secondriver-redis-cache
master