weixin-java-tools/README.md

49 lines
1.4 KiB
Markdown
Raw Normal View History

2015-02-09 09:41:03 +08:00
weixin-java-tools[![Build Status](https://travis-ci.org/chanjarster/weixin-java-tools.svg?branch=develop)](https://travis-ci.org/chanjarster/weixin-java-tools)
2014-10-22 13:03:19 +08:00
===========
微信公众号、企业号Java SDK。
2014-10-22 14:51:49 +08:00
详细文档请看 [wiki](https://github.com/chanjarster/weixin-java-tools/wiki)。
2014-10-22 13:03:19 +08:00
2014-10-22 14:51:49 +08:00
## Quick Start
2014-10-22 13:03:19 +08:00
如果要开发公众号订阅号、服务号应用在你的maven项目中添加
```xml
<dependency>
<groupId>me.chanjar</groupId>
<artifactId>weixin-java-mp</artifactId>
2015-01-25 10:59:45 +08:00
<version>1.1.1</version>
2014-10-22 13:03:19 +08:00
</dependency>
```
如果要开发企业号应用在你的maven项目中添加
```xml
<dependency>
<groupId>me.chanjar</groupId>
<artifactId>weixin-java-cp</artifactId>
2015-01-25 10:59:45 +08:00
<version>1.1.1</version>
2014-10-22 13:03:19 +08:00
</dependency>
```
2014-10-22 14:51:49 +08:00
2015-01-20 15:02:33 +08:00
## 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>
2015-02-04 11:56:36 +08:00
```
## 升级指南
2015-02-04 11:56:59 +08:00
* [1.0.3升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_0_3升级指南)
* [1.1.0升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_1_0升级指南)
* [1.1.1升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_1_1升级指南)