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

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