diff --git a/.gitee/ISSUE_TEMPLATE.md b/.gitee/ISSUE_TEMPLATE.md new file mode 100644 index 000000000..3a6235cea --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE.md @@ -0,0 +1,30 @@ +强烈建议大家到 github 相关页面提交问题,方便统一查询管理,具体页面地址: https://github.com/Wechat-Group/WxJava/issues + +当然如果必须在这里提问,请务必按以下格式填写,谢谢配合~ + +# 问题标题(提问前,请确保阅读过项目首页说明以及wiki文档相关内容) + +### 简要描述 +__明确描述下你所遇到的问题,(友情提示,如果确认属于bug,请参考贡献指南直接提交PR,省的花费时间在这里描述问题,非常感谢配合)__ + + +### 模块版本情况 + +* WxJava 模块名: +* WxJava 版本号: + + +### 期待结果 +__尽量详细描述__ + +### 实际情况 +__尽量详细描述__ + +### 重现步骤 +1. +2. +3. + + +### 日志 +__将日志放在 [pastebin](https://paste.ubuntu.com/) 或者其他地方,并将url地址贴在这里__ diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..f1b5c0cc5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +# 提问前,请确保阅读过项目首页说明以及wiki开发文档相关内容,完成内容后,请务必移除包括本句在内的无用内容,以免影响他人阅读,谢谢合作~ +# 另外如果确认属于bug,而且已明确如何修复,请参考贡献指南直接提交PR,省的浪费时间在这里描述问题,非常感谢配合 + +### 简要描述 +__明确描述下你所遇到的问题。__ + + +### 模块版本情况 + +* WxJava 模块名: +* WxJava 版本号: + +### 期待结果 和 实际情况 +__尽量详细描述__ + +### 重现步骤 +1. +2. +3. + +### 日志 +__将日志放在 [pastebin](https://paste.ubuntu.com/) 或者其他地方,并将url地址贴在这里__ diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..ea8f9b1ff --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,13 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +# 提问前,请确保阅读过项目首页说明以及wiki开发文档相关内容,完成内容后,请务必移除包括本句在内的无用内容,以免影响他人阅读,谢谢合作~ + +### 简要描述 +__请提供所需功能对应的微信官方文档地址以便进行确认。__ diff --git a/.mvn/wrapper/maven-wrapper.jar b/.mvn/wrapper/maven-wrapper.jar deleted file mode 100644 index c6feb8bb6..000000000 Binary files a/.mvn/wrapper/maven-wrapper.jar and /dev/null differ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4ae62709d..c7d48cd5d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1 +1,36 @@ -Please refer to [【代码贡献指南】](contribution.md). +# 代码贡献指南 +1. 首先非常欢迎和感谢对本项目发起Pull Request的同学。 +1. **特别提示:请务必在develop分支提交PR,master分支目前仅是正式版的代码,即发布正式版本后才会从develop分支进行合并。** +1. 本项目代码风格为使用2个空格代表一个Tab,因此在提交代码时请注意一下,否则很容易在IDE格式化代码后与原代码产生大量diff,这样会给其他人阅读代码带来极大的困扰。 +1. 为了便于设置,本项目引入editorconfig支持,请使用Eclipse的同学在贡献代码前安装相关插件,而IntelliJ IDEA新版本自带支持,如果没有可自行安装插件。 +1. **提交代码前,请检查代码是否已经格式化,并且保证新增加或者修改的方法都有完整的参数说明,而public方法必须拥有相应的单元测试并通过测试。** +1. 本项目可以采用两种方式接受代码贡献: + - 第一种就是基于[Git Flow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)开发流程,因此在发起Pull Request的时候请选择develop分支,详细步骤参考后文,推荐使用此种方式贡献代码。 + - (***暂停此种方式,请使用第一种***)另外一种贡献代码的方式就是加入SDK Developers开发组,前提是对自己的代码足够自信就可以申请加入,加入之后可以随时直接提交代码,但要注意对所做的修改或新增的代码进行单元测试,保证提交代码没有明显问题。 + +### PR方式贡献代码步骤 +* 在 GitHub 上 `fork` 到自己的仓库,如 `my_user/WxJava`,然后 `clone` 到本地,并设置用户信息。 + +```bash +$ git clone git@github.com:my_user/WxJava.git +$ cd WxJava +$ git config user.name "yourname" +$ git config user.email "your email" +``` +* 修改代码后提交,并推送到自己的仓库。 + +```bash +$ #do some change on the content +$ git commit -am "Fix issue #1: change something" +$ git push +``` +* 在 GitHub 网站上提交 Pull Request。 +* 定期使用项目仓库内容更新自己仓库内容。 + +```bash +$ git remote add upstream https://github.com/Wechat-Group/WxJava +$ git fetch upstream +$ git checkout develop +$ git rebase upstream/develop +$ git push -f origin develop +``` diff --git a/README.md b/README.md index c4f434dba..b8af739fc 100644 --- a/README.md +++ b/README.md @@ -15,22 +15,22 @@ - + - + - + - + @@ -39,28 +39,29 @@ ### 重要信息 1. **2018-12-23 项目更名为WxJava,并发布 [【3.3.0正式版】](https://github.com/Wechat-Group/WxJava/releases)**! -1. 新手重要提示:本项目仅是一个SDK开发工具包,未提供Web实现,建议使用maven或gradle引用本项目即可使用本SDK提供的各种功能,详情可参考 **[【Demo项目】](demo.md)** 或本项目中的部分单元测试代码;另外微信开发新手请务必阅读[【开发文档 Wiki 首页】](https://github.com/Wechat-Group/WxJava/wiki)的常见问题部分,可以少走很多弯路,节省不少时间。 -1. QQ群/微信群/企业微信/钉钉企业群等,请扫描上面的二维码关注微信公众号【WxJava】后,点击相关菜单获取相关信息加入,也可以在微信中搜索 `weixin-java-tools`或 `WxJava` 关注公众号,公众号会及时通知SDK相关更新信息,并不定期分享微信Java开发相关技术知识; -1. 钉钉企业群:[请点击链接申请加入](https://h5.dingtalk.com/inviteColleague/index.html#/invite/9ed100cc4a/E1DF918E32E398D191E7FE61FE0552A6) 或者 [用手机钉钉APP扫码](https://gitee.com/binary/weixin-java-tools/raw/master/qrcodes/.jpg) 申请加入。 -1. 新手提问前,请先阅读[【提问的智慧】](http://www.binarywang.com/article/smart-questions),并确保已查阅过 [【开发文档Wiki】](https://github.com/wechat-group/WxJava/wiki); -1. 寻求帮助时需贴代码或大长串异常信息的,请利用http://paste.ubuntu.com +1. 新手重要提示:本项目仅是一个SDK开发工具包,未提供Web实现,建议使用 `maven` 或 `gradle` 引用本项目即可使用本SDK提供的各种功能,详情可参考 **[【Demo项目】](demo.md)** 或本项目中的部分单元测试代码;另外微信开发新手请务必阅读[【开发文档 Wiki 首页】](https://github.com/Wechat-Group/WxJava/wiki)的常见问题部分,可以少走很多弯路,节省不少时间。 +1. 入群技术交流:若想获得QQ群/微信群/企业微信/钉钉企业群等信息的,请使用微信扫描上面的微信公众号二维码关注 `WxJava` 后点击相关菜单即可,同时也可以在微信中搜索 `weixin-java-tools` 或 `WxJava` 后选择正确的公众号进行关注,该公众号会及时通知SDK相关更新信息,并不定期分享微信Java开发相关技术知识; +1. 付费QQ群:(**注意:刚入群会有5分钟禁言,稍等片刻即可正常发言**) [![加入QQ群](https://img.shields.io/badge/QQ群-343954419-blue.svg)](http://shang.qq.com/wpa/qunwpa?idkey=731dc3e7ea31ebe25376cc1a791445468612c63fd0e9e05399b088ec81fd9e15) 或 [![加入QQ群](https://img.shields.io/badge/QQ群-343954419-blue.svg)](http://jq.qq.com/?_wv=1027&k=40lRskK),或者请自行搜索群号`343954419`进行添加;当然由于某种原因无法入群的,可关注公众号后获取其他群的加入方式; +1. 钉钉企业群:[请点击链接申请加入](https://h5.dingtalk.com/inviteColleague/index.html#/invite/9ed100cc4a/E1DF918E32E398D191E7FE61FE0552A6) 或者 [用手机钉钉APP扫码](https://gitee.com/binary/weixin-java-tools/raw/master/images/qrcodes/ding.jpg) 申请加入。 +1. 微信开发新手或者Java开发新手在群内提问或新开Issue提问前,请先阅读[【提问的智慧】](http://www.binarywang.com/article/smart-questions),并确保已查阅过 [【开发文档Wiki】](https://github.com/wechat-group/WxJava/wiki) ,避免浪费大家的宝贵时间; +1. 寻求帮助时需贴代码或大长串异常信息的,请利用 http://paste.ubuntu.com -------------------------------- ### 其他说明 -1. **阅读源码的同学请注意,本SDK为简化代码编译时加入了lombok支持,如果不了解lombok的话,请先学习下相关知识,比如可以阅读[此文章](https://mp.weixin.qq.com/s/cUc-bUcprycADfNepnSwZQ);** +1. **阅读源码的同学请注意,本SDK为简化代码编译时加入了`lombok`支持,如果不了解`lombok`的话,请先学习下相关知识,比如可以阅读[此文章](https://mp.weixin.qq.com/s/cUc-bUcprycADfNepnSwZQ);** 1. 如有新功能需求,发现BUG,或者由于微信官方接口调整导致的代码问题,可以直接在[【Issues】](https://github.com/Wechat-Group/WxJava/issues)页提出issue,便于讨论追踪问题; -1. 如果想贡献代码,请阅读[【代码贡献指南】](contribution.md); +1. 如果需要贡献代码,请务必在提交PR之前先仔细阅读[【代码贡献指南】](CONTRIBUTING.md),谢谢理解配合; 1. 本SDK要求的最低JDK版本是1.7,还在使用JDK6的用户请参考[【此项目】]( https://github.com/binarywang/weixin-java-tools-for-jdk6) ,而其他更早的JDK版本则需要自己改造实现。 1. [开源中国本项目的首页](https://www.oschina.net/p/weixin-java-tools-new),欢迎大家积极留言评分 🙂 -1. SDK详细开发文档请查阅 [【开发文档Wiki】](https://github.com/wechat-group/WxJava/wiki),部分文档可能未能及时更新,如有发现,可以及时上报或者自行修改。 -1. **如果本SDK对您有所帮助,欢迎对我们的努力进行肯定,可以扫描[【支付宝付款码】](qrcodes/alipay.jpg)或者[【微信支付二维码】](qrcodes/wepay.jpg)进行打赏,或者直接前往[【托管于码云的项目首页】](http://gitee.com/binary/weixin-java-tools),在评论区上方可以找到“捐助”按钮。非常感谢各位打赏和捐助的同学!** +1. SDK开发文档请查阅 [【开发文档Wiki】](https://github.com/wechat-group/WxJava/wiki),部分文档可能未能及时更新,如有发现,可以及时上报或者自行修改。 +1. **如果本开发工具包对您有所帮助,欢迎对我们的努力进行肯定,可以直接前往[【托管于码云的项目首页】](http://gitee.com/binary/weixin-java-tools),在页尾部分找到“捐助”按钮进行打赏,多多益善 😄。非常感谢各位打赏和捐助的同学!** 1. 各个模块的Javadoc可以在线查看:[weixin-java-miniapp](http://binary.ac.cn/weixin-java-miniapp-javadoc/)、[weixin-java-pay](http://binary.ac.cn/weixin-java-pay-javadoc/)、[weixin-java-mp](http://binary.ac.cn/weixin-java-mp-javadoc/)、[weixin-java-common](http://binary.ac.cn/weixin-java-common-javadoc/)、[weixin-java-cp](http://binary.ac.cn/weixin-java-cp-javadoc/)、[weixin-java-open](http://binary.ac.cn/weixin-java-open-javadoc/) 1. 本SDK项目在以下代码托管网站同步更新: * 码云:https://gitee.com/binary/weixin-java-tools * GitHub:https://github.com/wechat-group/WxJava --------------------------------- -### SDK使用方式 +### Maven 引用方式 注意:最新版本(包括测试版)为 [![Maven Central](https://img.shields.io/maven-central/v/com.github.binarywang/wx-java.svg)](http://mvnrepository.com/artifact/com.github.binarywang/wx-java),以下为最新正式版。 ```xml @@ -70,22 +71,37 @@ 3.3.0 ``` -* 各模块的`artifactId`: + +
+各模块的artifactId,请点击此处展开查看 + - 微信小程序:`weixin-java-miniapp` - 微信支付:`weixin-java-pay` - 微信开放平台:`weixin-java-open` - 公众号(包括订阅号和服务号):`weixin-java-mp` - 企业号/企业微信:`weixin-java-cp` +
--------------------------------- ### 版本说明 -1. 本项目定为大约每两个月发布一次正式版,版本号格式为X.X.0(如2.1.0,2.2.0等),遇到重大问题需修复会及时提交新版本,欢迎大家随时提交Pull Request; -1. BUG修复和新特性一般会先发布成小版本作为临时测试版本(如3.1.8.B,即尾号不为0,并添加B,以区别于正式版); + +
+点此展开查看 + +1. 本项目定为大约每两个月发布一次正式版(同时 `develop` 分支代码合并进入 `master` 分支),版本号格式为 `X.X.0`(如`2.1.0`,`2.2.0`等),遇到重大问题需修复会及时提交新版本,欢迎大家随时提交Pull Request; +1. BUG修复和新特性一般会先发布成小版本作为临时测试版本(如`3.1.8.B`,即尾号不为0,并添加B,以区别于正式版),代码仅存在于 `develop` 分支中; 1. 目前最新版本号为 [![Maven Central](https://img.shields.io/maven-central/v/com.github.binarywang/wx-java.svg)](http://mvnrepository.com/artifact/com.github.binarywang/wx-java) ,也可以通过访问链接 [【微信支付】](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-pay%22) 、[【微信小程序】](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-miniapp%22) 、[【公众号】](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-mp%22) 、[【企业微信】](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-cp%22)、[【开放平台】](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-open%22) 分别查看所有最新的版本。 +
+ ---------------------------------- ### 使用案例 +完整案例登记列表,请[【访问这里】](https://github.com/Wechat-Group/weixin-java-tools/issues/729)查看,欢迎提供更多的案例。 + +
+已整理过的案例列表,请点击此处展开查看 + 1. 开源项目:https://github.com/workcheng/weiya 1. 开源项目:https://github.com/jmdhappy/xxpay-master 1. 开源工具:https://github.com/rememberber/WePush @@ -111,12 +127,15 @@ 1. 锐捷网络:Saleslink 1. 洽洽企业号 1. HTC企业微信 -1. 其他更多案例请[【访问这里】](https://github.com/Wechat-Group/weixin-java-tools/issues/729),持续更新中。 + +
---------------------------------- ### 贡献者列表 -特别感谢参与贡献的所有同学!所有贡献者列表请在[此处](https://github.com/Wechat-Group/WxJava/graphs/contributors)查看。 -以下仅列出贡献次数最多的几位,欢迎大家踊跃贡献代码! +特别感谢参与贡献的所有同学,所有贡献者列表请在[此处](https://github.com/Wechat-Group/WxJava/graphs/contributors)查看,欢迎大家继续踊跃贡献代码! +
+点击此处展开查看贡献次数最多的几位同学 + 1. [chanjarster (Daniel Qian)](http://github.com/chanjarster) 1. [binarywang (Binary Wang)](http://github.com/binarywang) 1. [mgcnrx11](http://github.com/mgcnrx11) @@ -127,3 +146,5 @@ 1. [tianmu](http://github.com/tianmu) 1. [rememberber (周波)](http://github.com/rememberber) 1. [charmingoh (Charming)](http://github.com/charmingoh) + +
diff --git a/banners/coding.jpg b/banners/coding.jpg deleted file mode 100644 index c10b22a6d..000000000 Binary files a/banners/coding.jpg and /dev/null differ diff --git a/banners/tcloud.jpg b/banners/tcloud.jpg deleted file mode 100644 index a83b2fa2e..000000000 Binary files a/banners/tcloud.jpg and /dev/null differ diff --git a/banners/wiki.jpg b/banners/wiki.jpg deleted file mode 100644 index 1dbc97a5a..000000000 Binary files a/banners/wiki.jpg and /dev/null differ diff --git a/contribution.md b/contribution.md deleted file mode 100644 index 29823b07e..000000000 --- a/contribution.md +++ /dev/null @@ -1,35 +0,0 @@ -# 代码贡献指南 -1. 首先非常欢迎和感谢对本项目发起Pull Request的同学。 -1. 本项目代码风格为使用2个空格代表一个Tab,因此在提交代码时请注意一下,否则很容易在IDE格式化代码后与原代码产生大量diff,这样会给其他人阅读代码带来极大的困扰。 -1. 为了便于设置,本项目引入editorconfig支持,请使用Eclipse的同学在贡献代码前安装相关插件,而IntelliJ IDEA新版本自带支持,如果没有可自行安装插件。 -1. **提交代码前,请检查代码是否已经格式化,并且保证新增加或者修改的方法都有完整的参数说明,而public方法必须拥有相应的单元测试并通过测试。** -1. 本项目可以采用两种方式接受代码贡献: - - 第一种就是基于[Git Flow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)开发流程,因此在发起Pull Request的时候请选择develop分支,详细步骤参考后文,推荐使用此种方式贡献代码。 - - (***暂停此种方式,请使用第一种***)另外一种贡献代码的方式就是加入SDK Developers开发组,前提是对自己的代码足够自信就可以申请加入,加入之后可以随时直接提交代码,但要注意对所做的修改或新增的代码进行单元测试,保证提交代码没有明显问题。 - -### PR方式贡献代码步骤 -* 在 GitHub 上 `fork` 到自己的仓库,如 `my_user/WxJava`,然后 `clone` 到本地,并设置用户信息。 - -```bash -$ git clone git@github.com:my_user/WxJava.git -$ cd WxJava -$ git config user.name "yourname" -$ git config user.email "your email" -``` -* 修改代码后提交,并推送到自己的仓库。 - -```bash -$ #do some change on the content -$ git commit -am "Fix issue #1: change something" -$ git push -``` -* 在 GitHub 网站上提交 Pull Request。 -* 定期使用项目仓库内容更新自己仓库内容。 - -```bash -$ git remote add upstream https://github.com/Wechat-Group/WxJava -$ git fetch upstream -$ git checkout develop -$ git rebase upstream/develop -$ git push -f origin develop -``` diff --git a/banners/aliyun.jpg b/images/banners/aliyun.jpg similarity index 70% rename from banners/aliyun.jpg rename to images/banners/aliyun.jpg index 5fe5e8a70..c4b0ba0eb 100644 Binary files a/banners/aliyun.jpg and b/images/banners/aliyun.jpg differ diff --git a/images/banners/coding.jpg b/images/banners/coding.jpg new file mode 100644 index 000000000..23e788e7b Binary files /dev/null and b/images/banners/coding.jpg differ diff --git a/images/banners/tcloud.jpg b/images/banners/tcloud.jpg new file mode 100644 index 000000000..341032cd4 Binary files /dev/null and b/images/banners/tcloud.jpg differ diff --git a/images/banners/wiki.jpg b/images/banners/wiki.jpg new file mode 100644 index 000000000..d36d64193 Binary files /dev/null and b/images/banners/wiki.jpg differ diff --git a/images/qrcodes/alipay.jpg b/images/qrcodes/alipay.jpg new file mode 100644 index 000000000..017acdbe4 Binary files /dev/null and b/images/qrcodes/alipay.jpg differ diff --git a/images/qrcodes/cp.png b/images/qrcodes/cp.png new file mode 100644 index 000000000..69e716ec2 Binary files /dev/null and b/images/qrcodes/cp.png differ diff --git a/qrcodes/ding.jpg b/images/qrcodes/ding.jpg similarity index 100% rename from qrcodes/ding.jpg rename to images/qrcodes/ding.jpg diff --git a/images/qrcodes/mp.png b/images/qrcodes/mp.png new file mode 100644 index 000000000..815857229 Binary files /dev/null and b/images/qrcodes/mp.png differ diff --git a/images/qrcodes/wepay.jpg b/images/qrcodes/wepay.jpg new file mode 100644 index 000000000..4fca9a464 Binary files /dev/null and b/images/qrcodes/wepay.jpg differ diff --git a/.codeclimate.yml b/others/.codeclimate.yml similarity index 100% rename from .codeclimate.yml rename to others/.codeclimate.yml diff --git a/.mvn/wrapper/maven-wrapper.properties b/others/.mvn/wrapper/maven-wrapper.properties similarity index 100% rename from .mvn/wrapper/maven-wrapper.properties rename to others/.mvn/wrapper/maven-wrapper.properties diff --git a/check-dependency-updates.sh b/others/check-dependency-updates.sh old mode 100755 new mode 100644 similarity index 100% rename from check-dependency-updates.sh rename to others/check-dependency-updates.sh diff --git a/check-plugin-updates.sh b/others/check-plugin-updates.sh old mode 100755 new mode 100644 similarity index 100% rename from check-plugin-updates.sh rename to others/check-plugin-updates.sh diff --git a/check-property-updates.sh b/others/check-property-updates.sh old mode 100755 new mode 100644 similarity index 100% rename from check-property-updates.sh rename to others/check-property-updates.sh diff --git a/mvnw b/others/mvnw old mode 100755 new mode 100644 similarity index 100% rename from mvnw rename to others/mvnw diff --git a/mvnw.cmd b/others/mvnw.cmd similarity index 100% rename from mvnw.cmd rename to others/mvnw.cmd diff --git a/weixin-java-osgi/pom.xml b/others/weixin-java-osgi/pom.xml similarity index 100% rename from weixin-java-osgi/pom.xml rename to others/weixin-java-osgi/pom.xml diff --git a/pom.xml b/pom.xml index 0ad56a1bf..2e9a70c4f 100644 --- a/pom.xml +++ b/pom.xml @@ -116,7 +116,7 @@ UTF-8 4.5 - 9.4.12.v20180830 + 9.4.17.v20190418 diff --git a/qrcodes/alipay.jpg b/qrcodes/alipay.jpg deleted file mode 100644 index 6cccac8b1..000000000 Binary files a/qrcodes/alipay.jpg and /dev/null differ diff --git a/qrcodes/cp.png b/qrcodes/cp.png deleted file mode 100644 index e849c8481..000000000 Binary files a/qrcodes/cp.png and /dev/null differ diff --git a/qrcodes/cp_mp_qrcodes.png b/qrcodes/cp_mp_qrcodes.png deleted file mode 100644 index 7f333d18e..000000000 Binary files a/qrcodes/cp_mp_qrcodes.png and /dev/null differ diff --git a/qrcodes/mp.jpg b/qrcodes/mp.jpg deleted file mode 100644 index b73e260d2..000000000 Binary files a/qrcodes/mp.jpg and /dev/null differ diff --git a/qrcodes/wepay.jpg b/qrcodes/wepay.jpg deleted file mode 100644 index 85a7cd8e5..000000000 Binary files a/qrcodes/wepay.jpg and /dev/null differ diff --git a/weixin-java-cp/src/test/resources/mm.jpeg b/weixin-java-cp/src/test/resources/mm.jpeg index 183699e96..e1a0cea70 100644 Binary files a/weixin-java-cp/src/test/resources/mm.jpeg and b/weixin-java-cp/src/test/resources/mm.jpeg differ diff --git a/weixin-java-miniapp/src/test/resources/tmp.png b/weixin-java-miniapp/src/test/resources/tmp.png index 5cb4a4060..7c3a48838 100644 Binary files a/weixin-java-miniapp/src/test/resources/tmp.png and b/weixin-java-miniapp/src/test/resources/tmp.png differ diff --git a/weixin-java-mp/src/test/resources/mm.jpeg b/weixin-java-mp/src/test/resources/mm.jpeg index 183699e96..e1a0cea70 100644 Binary files a/weixin-java-mp/src/test/resources/mm.jpeg and b/weixin-java-mp/src/test/resources/mm.jpeg differ