weixin-java-tools/README.md
2016-07-26 16:28:44 +08:00

57 lines
3.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Weixin Java Tools <a target="_blank" href="http://shang.qq.com/wpa/qunwpa?idkey=078f7a153d243853e24cf2b542e7a6ccbf2a592bc138080f84d11297f736ec46"><img border="0" src="http://pub.idqqimg.com/wpa/images/group.png" alt="weixin-java-tools" title="weixin-java-tools"></a>
## 微信公众号/企业号开发Java SDK
## [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badge/) ![Maven Central](https://img.shields.io/maven-central/v/com.github.binarywang/weixin-java-parent.svg) [![Build Status](https://travis-ci.org/binarywang/weixin-java-tools.svg?branch=develop)](https://travis-ci.org/binarywang/weixin-java-tools) [![Code Climate](https://codeclimate.com/github/binarywang/weixin-java-tools.png)](https://codeclimate.com/github/binarywang/weixin-java-tools)
### 声明本项目基于chanjarster/weixin-java-tools由于原作者长期没有维护故单独维护和发布且发布到maven上的groupId也会不同。
#### 最新更新1.3.5版发布!!! on 2016-06-30
### 详细开发文档请看 [wiki](https://github.com/chanjarster/weixin-java-tools/wiki)。
===========
## 使用开发交流工具:
* QQ群343954419 <a target="_blank" href="http://shang.qq.com/wpa/qunwpa?idkey=078f7a153d243853e24cf2b542e7a6ccbf2a592bc138080f84d11297f736ec46"><img border="0" src="http://pub.idqqimg.com/wpa/images/group.png" alt="weixin-java-tools" title="weixin-java-tools"></a>
* 注意为保证入群成员质量请申请入群时认真输入Github帐号ID即你的github主页地址https://github.com/XXXX 中最后的部分XXXX的内容谢谢~
* 微信群: 因二维码有时间限制如有想加入微信群的请入QQ群后咨询获取最新入群二维码。
===========
## 发布周期
暂定为每月发布一次月初或月底发布新版本遇到重大问题需修复会及时提交新版本欢迎大家随时提交Pull Request。
## Quick Start
如果要开发公众号订阅号、服务号应用在你的maven项目中添加
```xml
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-mp</artifactId>
<version>1.3.5</version>
</dependency>
```
如果要开发企业号应用在你的maven项目中添加
```xml
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-cp</artifactId>
<version>1.3.5</version>
</dependency>
```
## 预览版
本项目的BUG修复和新特性一般会先发布成小版本作为临时版本如1.3.5.X 目前最新版本号为![Maven Central](https://img.shields.io/maven-central/v/com.github.binarywang/weixin-java-parent.svg)
也可以通过访问如下地址查看所有最新的版本:
- <a target="_blank" href="http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-mp%22">公众号</a>
- <a target="_blank" href="http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-cp%22">企业号</a>
## 关于Pull Request
非常欢迎和感谢对本项目发起Pull Request的同学不过本项目基于[git flow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)开发流程因此在发起Pull Request的时候请选择develop分支。
且本项目代码风格是用2个空格代表一个tab因此在发起PR时注意一下否则很容易发生在IDE格式化代码后与原代码产生大量diff这样我在阅读PR的时候就很困难。