weixin-java-tools/README.md
2014-10-22 13:03:19 +08:00

35 lines
787 B
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-cp
===========
微信公众号、企业号Java SDK。
从``1.0.3``开始本项目拆分成3个部分
1. weixin-java-common公共lib
2. weixin-java-cp企业号SDK
3. weixin-java-mp公众号订阅号、服务号SDK
详细文档请看 [wiki](https://github.com/chanjarster/weixin-java-tools/wiki)
# Quick Start
如果要开发公众号订阅号、服务号应用在你的maven项目中添加
```xml
<dependency>
<groupId>me.chanjar</groupId>
<artifactId>weixin-java-mp</artifactId>
<version>1.0.3</version>
</dependency>
```
如果要开发企业号应用在你的maven项目中添加
```xml
<dependency>
<groupId>me.chanjar</groupId>
<artifactId>weixin-java-cp</artifactId>
<version>1.0.3</version>
</dependency>
```