dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

README.md 2.4 KiB

10 anni fa
10 anni fa
10 anni fa
10 anni fa
10 anni fa
10 anni fa
10 anni fa
10 anni fa
10 anni fa
10 anni fa
10 anni fa
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/chanjarster/weixin-java-tools?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
  5. ===========
  6. * 群/聊天室:请点击上方的GITTER按钮
  7. * 本项目的发布周期:本人子2015年6月开始进入到了一个非常忙碌的状态,且公司目前也没有开发微信相关的项目,因此本项目的维护基本靠“等”。所以靠人不如靠自己,提交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>me.chanjar</groupId>
  16. <artifactId>weixin-java-mp</artifactId>
  17. <version>1.3.3</version>
  18. </dependency>
  19. ```
  20. 如果要开发企业号应用,在你的maven项目中添加:
  21. ```xml
  22. <dependency>
  23. <groupId>me.chanjar</groupId>
  24. <artifactId>weixin-java-cp</artifactId>
  25. <version>1.3.3</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. ## 升级指南
  40. * [1.0.3升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_0_3升级指南)
  41. * [1.1.0升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_1_0升级指南)
  42. * [1.1.1升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_1_1升级指南)
  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的时候就很困难。