1 Star 0 Fork 1.1K

牛奶拌饭 / smart-socket

forked from smartboot / smart-socket 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.79 KB
一键复制 编辑 原始数据 按行查看 历史
三刀 提交于 2017-10-16 09:34 . http协议优化
<?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">
<name>smart-socket</name>
<modelVersion>4.0.0</modelVersion>
<groupId>org.smartboot.socket</groupId>
<artifactId>smart-socket</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<properties>
<commons.lang.version>2.6</commons.lang.version>
<log4j.version>2.9.1</log4j.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.smartboot.socket</groupId>
<artifactId>aio-core</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>org.smartboot.socket</groupId>
<artifactId>smart-protocol-p2p</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons.lang.version}</version>
</dependency>
<!-- 日志系统 -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
<modules>
<module>aio-core</module>
<module>smart-protocol-p2p</module>
<module>smart-protocol-http</module>
</modules>
</project>
Java
1
https://gitee.com/dairymix/smart-socket.git
git@gitee.com:dairymix/smart-socket.git
dairymix
smart-socket
smart-socket
master

搜索帮助