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.

10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. weixin-java-tools
  2. ===========
  3. 微信公众号、企业号Java SDK。
  4. 详细文档请看 [wiki](https://github.com/chanjarster/weixin-java-tools/wiki)。
  5. ## Quick Start
  6. 如果要开发公众号(订阅号、服务号)应用,在你的maven项目中添加:
  7. ```xml
  8. <dependency>
  9. <groupId>me.chanjar</groupId>
  10. <artifactId>weixin-java-mp</artifactId>
  11. <version>1.1.1</version>
  12. </dependency>
  13. ```
  14. 如果要开发企业号应用,在你的maven项目中添加:
  15. ```xml
  16. <dependency>
  17. <groupId>me.chanjar</groupId>
  18. <artifactId>weixin-java-cp</artifactId>
  19. <version>1.1.1</version>
  20. </dependency>
  21. ```
  22. ## SNAPSHOT版
  23. 本项目的BUG修复和新特性一般会先发布在*-SNAPSHOT版里供大家预览,如果要使用*-SNAPSHOT版,则需要在你的pom.xml中添加这段:
  24. ```xml
  25. <repositories>
  26. <repository>
  27. <snapshots />
  28. <id>sonatype snapshots</id>
  29. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  30. </repository>
  31. </repositories>
  32. ```
  33. ## 升级指南
  34. * [1.0.3升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_0_3升级指南)
  35. * [1.1.0升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_1_0升级指南)
  36. * [1.1.1升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_1_1升级指南)