1 Star 0 Fork 37

user_1089201 / redisx

forked from draper / redisx 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 4.23 KB
一键复制 编辑 原始数据 按行查看 历史
draper 提交于 2017-01-03 12:31 . 更新 pom.xml
<?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>cn.redissdk</groupId>
<artifactId>redisx</artifactId>
<version>1.0.0</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.19</version>
</dependency>
<dependency>
<groupId>com.esotericsoftware.kryo</groupId>
<artifactId>kryo</artifactId>
<version>2.24.0</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>2.6.1</version>
</dependency>
<dependency>
<groupId>javolution</groupId>
<artifactId>javolution</artifactId>
<version>5.3.1</version>
</dependency>
<dependency>
<groupId>de.ruedigermoeller</groupId>
<artifactId>fst</artifactId>
<version>2.45</version>
</dependency>
</dependencies>
<!-- <repositories> <repository> <snapshots> <enabled>true</enabled> </snapshots>
<id>public</id> <name>Public Repositories</name> <url>http://192.168.0.8:8081/nexus/content/groups/public/</url>
</repository> </repositories> <pluginRepositories> <pluginRepository> <id>public</id>
<name>Public Repositories</name> <url>http://192.168.0.8:8081/nexus/content/groups/public/</url>
</pluginRepository> </pluginRepositories> -->
<!-- <distributionManagement> <repository> <id>releases</id> <name>Local
Nexus Repository</name> <url>http://192.168.0.8:8081/nexus/content/repositories/releases/</url>
</repository> <snapshotRepository> <id>Snapshots</id> <name>Local Nexus Repository</name>
<url>http://192.168.0.8:8081/nexus/content/repositories/snapshots</url> </snapshotRepository>
</distributionManagement> -->
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Nexus Release Repository</name>
<url>http://192.168.1.16:8081/nexus/content/repositories/releases/</url>
</repository>
<!-- <snapshotRepository> <id>nexus-snapshots</id> <name>Nexus Snapshot
Repository</name> <url>http://192.168.1.16:8081/nexus/content/repositories/snapshots/</url>
</snapshotRepository> -->
</distributionManagement>
</project>
Java
1
https://gitee.com/kisszpy/redisx.git
git@gitee.com:kisszpy/redisx.git
kisszpy
redisx
redisx
master

搜索帮助