dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

README.md 2.0 KiB

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