开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
forked from 三刀/smart-socket
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (3)
master
smart-socket-optimize
feature/with-protocol-http
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
master
分支 (3)
master
smart-socket-optimize
feature/with-protocol-http
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (3)
master
smart-socket-optimize
feature/with-protocol-http
smart-socket
/
pom.xml
smart-socket
/
pom.xml
pom.xml 5.43 KB
一键复制 编辑 原始数据 按行查看 历史
三刀 提交于 2015年10月29日 16:15 +08:00 . 将消息的编解码移至各处理线程进行,提升IO性能
<?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>net.vinote.smart</groupId>
<artifactId>smart-socket</artifactId>
<version>1.0.0-SNAPSHOT</version>
<url>http://www.vinote.net</url>
<scm>
<url>https://svn.code.sf.net/p/smartsocket/svn/trunk</url>
</scm>
<inceptionYear>2012</inceptionYear>
<description>基于NIO实现的高性能通信框架</description>
<packaging>pom</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.vinote.smart</groupId>
<artifactId>smart-quickly</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.vinote.smart</groupId>
<artifactId>smart-protocol-p2p</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-runtime</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.12</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.12</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- 项目团队 -->
<developers>
<developer>
<id>Seer</id>
<name>郑俊伟</name>
<email>zhengjunweimail@163.com</email>
<roles>
<role>牛逼的开发人员</role>
</roles>
<url>http://www.vinote.net</url>
<timezone>GMT+8</timezone>
</developer>
</developers>
<!-- 项目授权 -->
<licenses>
<license>
<name>Apache License,Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<!-- 站点生成插件 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-apt</artifactId>
<version>1.6</version>
</dependency>
</dependencies>
<configuration>
<!-- 支持国际化 -->
<locales>zh_CN</locales>
<outputEncoding>UTF8</outputEncoding>
<inputEncoding>UTF8</inputEncoding>
<reportPlugins>
<!-- <plugin> 生成javadoc文件 <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration>
<charset>utf8</charset> <encoding>utf8</encoding> <aggregate>true</aggregate>
</configuration> </plugin> <plugin> 项目信息过滤 <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId> <version>2.8</version>
<reportSets> <reportSet> <reports> index一定要生成,否则链接问题 <report>index</report>
<report>dependencies</report> <report>project-team</report> <report>mailing-list</report>
<report>issue-tracking</report> <report>license</report> <report>cim</report>
<report>scm</report> <report>modules</report> <report>plugins</report> <report>help</report>
<report>summary</report> </reports> </reportSet> </reportSets> </plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version> <configuration> <aggregate>true</aggregate> </configuration>
</plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId>
<version>2.10</version> <configuration> <encoding>utf8</encoding> <configLocation>config/maven_checks.xml</configLocation>
</configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId> <version>3.0</version> <configuration>
<aggregate>true</aggregate> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId> <version>2.7</version> </plugin> -->
<!-- <plugin> 代码更改日志 <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId>
<version>2.3</version> </plugin> -->
</reportPlugins>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>smart-quickly</module>
<module>smart-protocol-p2p</module>
<module>smart-p2p-server</module>
<module>smart-p2p-client</module>
<module>smart-protocol-http</module>
</modules>
<distributionManagement>
<site>
<id>website</id>
<url>file:\\\c:\site</url>
</site>
</distributionManagement>
</project>
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

基于NIO实现的一个高性能通信框架
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wanjunlovejava/smart-socket.git
git@gitee.com:wanjunlovejava/smart-socket.git
wanjunlovejava
smart-socket
smart-socket
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /