49 Star 103 Fork 36

zfg / redis-proxy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.37 KB
一键复制 编辑 原始数据 按行查看 历史
无名小兵 提交于 2017-01-09 15:17 . 修改优化提交
<?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>com.talk51</groupId>
<artifactId>redis-proxy</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
<module>redis-proxy-server</module>
<module>redis-proxy-net</module>
<module>redis-proxy-client</module>
<module>redis-proxy-common</module>
<module>redis-proxy-monitor</module>
<module>redis-proxy-jedis</module>
<module>redis-proxy-sample</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.target>${project.build.directory}</project.build.target>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<profiles>
<profile>
<id>E:/relase</id>
<properties>
<project.build.target>E:/release/${project.build.finalName}</project.build.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Java
1
https://gitee.com/zhanggaofeng/redis-proxy.git
git@gitee.com:zhanggaofeng/redis-proxy.git
zhanggaofeng
redis-proxy
redis-proxy
master

搜索帮助