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.0 KiB

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