dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 2.1 KiB

10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Weixin-java-tools
  2. ## 微信公众号、企业号Java SDK。
  3. [![Build Status](https://travis-ci.org/binarywang/weixin-java-tools.svg?branch=develop)](https://travis-ci.org/binarywang/weixin-java-tools)
  4. ![Maven Central](https://img.shields.io/maven-central/v/com.github.binarywang/weixin-java-parent.svg)
  5. ### 详细文档请看 [wiki](https://github.com/chanjarster/weixin-java-tools/wiki)。
  6. #### 1.3.4版发布!!! By Binary Wang 2016-06-01
  7. ===========
  8. * QQ群:343954419
  9. * 微信群:
  10. ![Alt text](https://raw.githubusercontent.com/binarywang/weixin-java-tools/master/weixinqun.jpg "微信群")
  11. ===========
  12. ## 发布周期
  13. 暂定为一月一次发布,月初或月底发布新版本,遇到重大问题需修复会及时提交新版本,欢迎大家随时提交Pull Request。
  14. ## Quick Start
  15. 如果要开发公众号(订阅号、服务号)应用,在你的maven项目中添加:
  16. ```xml
  17. <dependency>
  18. <groupId>com.github.binarywang</groupId>
  19. <artifactId>weixin-java-mp</artifactId>
  20. <version>1.3.4</version>
  21. </dependency>
  22. ```
  23. 如果要开发企业号应用,在你的maven项目中添加:
  24. ```xml
  25. <dependency>
  26. <groupId>com.github.binarywang</groupId>
  27. <artifactId>weixin-java-cp</artifactId>
  28. <version>1.3.4</version>
  29. </dependency>
  30. ```
  31. ## SNAPSHOT版
  32. 本项目的BUG修复和新特性一般会先发布在*-SNAPSHOT版里供大家预览,如果要使用*-SNAPSHOT版,则需要在你的pom.xml中添加这段:
  33. ```xml
  34. <repositories>
  35. <repository>
  36. <snapshots />
  37. <id>sonatype snapshots</id>
  38. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  39. </repository>
  40. </repositories>
  41. ```
  42. ## 关于Pull Request
  43. 非常欢迎和感谢对本项目发起Pull Request的同学,不过本项目基于[git flow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)开发流程,因此在发起Pull Request的时候请选择develop分支。
  44. 且本项目代码风格是用2个空格代表一个tab,因此在发起PR时注意一下,否则很容易发生在IDE格式化代码后与原代码产生大量diff,这样我在阅读PR的时候就很困难。