weixin-java-tools/README.md
2016-06-20 10:49:55 +08:00

64 lines
2.1 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 微信公众号、企业号Java SDK
[![Build Status](https://travis-ci.org/binarywang/weixin-java-tools.svg?branch=develop)](https://travis-ci.org/binarywang/weixin-java-tools)
![Maven Central](https://img.shields.io/maven-central/v/com.github.binarywang/weixin-java-parent.svg)
### 详细文档请看 [wiki](https://github.com/chanjarster/weixin-java-tools/wiki)。
#### 1.3.4版发布!!! By Binary Wang 2016-06-01
===========
* QQ群343954419
* 微信群:
![Alt text](https://raw.githubusercontent.com/binarywang/weixin-java-tools/master/weixinqun.jpg "微信群")
===========
## 发布周期
暂定为一月一次发布月初或月底发布新版本遇到重大问题需修复会及时提交新版本欢迎大家随时提交Pull Request。
## Quick Start
如果要开发公众号订阅号、服务号应用在你的maven项目中添加
```xml
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-mp</artifactId>
<version>1.3.4</version>
</dependency>
```
如果要开发企业号应用在你的maven项目中添加
```xml
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-cp</artifactId>
<version>1.3.4</version>
</dependency>
```
## SNAPSHOT版
本项目的BUG修复和新特性一般会先发布在*-SNAPSHOT版里供大家预览如果要使用*-SNAPSHOT版则需要在你的pom.xml中添加这段
```xml
<repositories>
<repository>
<snapshots />
<id>sonatype snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
```
## 关于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的时候就很困难。