Skip to content

Commit 46b3eba

Browse files
committed
修改groupId,修复Pom文件,同步README.md文件
1 parent 58ad7b7 commit 46b3eba

File tree

5 files changed

+38
-49
lines changed

5 files changed

+38
-49
lines changed

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,45 @@
1-
weixin-java-tools
1+
# Weixin-java-tools
2+
## 微信公众号、企业号Java SDK。
23

3-
[![Build Status](https://travis-ci.org/chanjarster/weixin-java-tools.svg?branch=develop)](https://travis-ci.org/chanjarster/weixin-java-tools)
4-
![Maven Central](https://img.shields.io/maven-central/v/me.chanjar/weixin-java-parent.svg)
5-
[![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)
4+
[![Build Status](https://travis-ci.org/binarywang/weixin-java-tools.svg?branch=develop)](https://travis-ci.org/binarywang/weixin-java-tools)
5+
![Maven Central](https://img.shields.io/maven-central/v/com.github.binarywang/weixin-java-parent.svg)
6+
7+
### 详细文档请看 [wiki](https://github.com/chanjarster/weixin-java-tools/wiki)
8+
9+
#### 1.3.4版发布!!! By Binary Wang 2016-06-01
610

7-
===========
811

9-
* 群/聊天室:请点击上方的GITTER按钮
10-
* 本项目的发布周期:本人子2015年6月开始进入到了一个非常忙碌的状态,且公司目前也没有开发微信相关的项目,因此本项目的维护基本靠“等”。所以靠人不如靠自己,提交pull request吧。
12+
===========
1113

14+
* QQ群:343954419
15+
* 微信群:
16+
![Alt text](https://raw.githubusercontent.com/binarywang/weixin-java-tools/master/weixinqun.jpg "微信群")
17+
1218
===========
1319

14-
微信公众号、企业号Java SDK。
20+
## 发布周期
21+
暂定为一月一次发布,月初或月底发布新版本,遇到重大问题需修复会及时提交新版本,欢迎大家随时提交Pull Request。
1522

16-
详细文档请看 [wiki](https://github.com/chanjarster/weixin-java-tools/wiki)
1723

1824
## Quick Start
1925

2026
如果要开发公众号(订阅号、服务号)应用,在你的maven项目中添加:
2127

2228
```xml
2329
<dependency>
24-
<groupId>me.chanjar</groupId>
30+
<groupId>com.github.binarywang</groupId>
2531
<artifactId>weixin-java-mp</artifactId>
26-
<version>1.3.3</version>
32+
<version>1.3.4</version>
2733
</dependency>
2834
```
2935

3036
如果要开发企业号应用,在你的maven项目中添加:
3137

3238
```xml
3339
<dependency>
34-
<groupId>me.chanjar</groupId>
40+
<groupId>com.github.binarywang</groupId>
3541
<artifactId>weixin-java-cp</artifactId>
36-
<version>1.3.3</version>
42+
<version>1.3.4</version>
3743
</dependency>
3844
```
3945

@@ -51,14 +57,8 @@ weixin-java-tools
5157
</repositories>
5258
```
5359

54-
## 升级指南
55-
56-
* [1.0.3升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_0_3升级指南)
57-
* [1.1.0升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_1_0升级指南)
58-
* [1.1.1升级指南](https://github.com/chanjarster/weixin-java-tools/wiki/1_1_1升级指南)
59-
6060
## 关于Pull Request
6161

6262
非常欢迎和感谢对本项目发起Pull Request的同学,不过本项目基于[git flow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)开发流程,因此在发起Pull Request的时候请选择develop分支。
6363

64-
且本项目代码风格是用2个空格代表一个tab,因此在发起PR时注意一下,否则很容易发生在IDE格式化代码后与原代码产生大量diff,这样我在阅读PR的时候就很困难。
64+
且本项目代码风格是用2个空格代表一个tab,因此在发起PR时注意一下,否则很容易发生在IDE格式化代码后与原代码产生大量diff,这样我在阅读PR的时候就很困难。

pom.xml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
44
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>me.chanjar</groupId>
6+
<groupId>com.github.binarywang</groupId>
77
<artifactId>weixin-java-parent</artifactId>
8-
<version>1.3.4-SNAPSHOT</version>
8+
<version>1.3.5-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010
<name>WeiXin Java Tools - Parent</name>
1111
<description>微信公众号、企业号上级POM</description>
12-
<url>https://github.com/chanjarster/weixin-java-tools</url>
12+
<url>https://github.com/binarywang/weixin-java-tools</url>
1313

1414
<licenses>
1515
<license>
@@ -23,12 +23,16 @@
2323
<name>Daniel Qian</name>
2424
<email>[email protected]</email>
2525
</developer>
26+
<developer>
27+
<name>Binary Wang</name>
28+
<email>[email protected]</email>
29+
</developer>
2630
</developers>
2731

2832
<scm>
29-
<connection>scm:git:https://github.com/chanjarster/weixin-java-tools.git</connection>
30-
<developerConnection>scm:git:[email protected]:chanjarster/weixin-java-tools.git</developerConnection>
31-
<url>https://github.com/chanjarster/weixin-java-tools</url>
33+
<connection>scm:git:https://github.com/binarywang/weixin-java-tools.git</connection>
34+
<developerConnection>scm:git:[email protected]:binarywang/weixin-java-tools.git</developerConnection>
35+
<url>https://github.com/binarywang/weixin-java-tools</url>
3236
</scm>
3337

3438
<modules>

weixin-java-common/pom.xml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>me.chanjar</groupId>
7+
<groupId>com.github.binarywang</groupId>
88
<artifactId>weixin-java-parent</artifactId>
9-
<version>1.3.4-SNAPSHOT</version>
9+
<version>1.3.5-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>weixin-java-common</artifactId>
@@ -27,31 +27,26 @@
2727
<dependency>
2828
<groupId>org.testng</groupId>
2929
<artifactId>testng</artifactId>
30-
<version>6.8.7</version>
3130
<scope>test</scope>
3231
</dependency>
3332
<dependency>
3433
<groupId>org.mockito</groupId>
3534
<artifactId>mockito-all</artifactId>
36-
<version>1.9.5</version>
3735
<scope>test</scope>
3836
</dependency>
3937
<dependency>
4038
<groupId>com.google.inject</groupId>
4139
<artifactId>guice</artifactId>
42-
<version>3.0</version>
4340
<scope>test</scope>
4441
</dependency>
4542
<dependency>
4643
<groupId>org.eclipse.jetty</groupId>
4744
<artifactId>jetty-server</artifactId>
48-
<version>9.3.0.M0</version>
4945
<scope>test</scope>
5046
</dependency>
5147
<dependency>
5248
<groupId>org.eclipse.jetty</groupId>
5349
<artifactId>jetty-servlet</artifactId>
54-
<version>9.3.0.M0</version>
5550
<scope>test</scope>
5651
</dependency>
5752
</dependencies>

weixin-java-cp/pom.xml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>me.chanjar</groupId>
7+
<groupId>com.github.binarywang</groupId>
88
<artifactId>weixin-java-parent</artifactId>
9-
<version>1.3.4-SNAPSHOT</version>
9+
<version>1.3.5-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>weixin-java-cp</artifactId>
@@ -15,7 +15,7 @@
1515

1616
<dependencies>
1717
<dependency>
18-
<groupId>me.chanjar</groupId>
18+
<groupId>com.github.binarywang</groupId>
1919
<artifactId>weixin-java-common</artifactId>
2020
<version>${project.version}</version>
2121
</dependency>
@@ -27,31 +27,26 @@
2727
<dependency>
2828
<groupId>org.testng</groupId>
2929
<artifactId>testng</artifactId>
30-
<version>6.8.7</version>
3130
<scope>test</scope>
3231
</dependency>
3332
<dependency>
3433
<groupId>org.mockito</groupId>
3534
<artifactId>mockito-all</artifactId>
36-
<version>1.9.5</version>
3735
<scope>test</scope>
3836
</dependency>
3937
<dependency>
4038
<groupId>com.google.inject</groupId>
4139
<artifactId>guice</artifactId>
42-
<version>3.0</version>
4340
<scope>test</scope>
4441
</dependency>
4542
<dependency>
4643
<groupId>org.eclipse.jetty</groupId>
4744
<artifactId>jetty-server</artifactId>
48-
<version>9.3.0.M0</version>
4945
<scope>test</scope>
5046
</dependency>
5147
<dependency>
5248
<groupId>org.eclipse.jetty</groupId>
5349
<artifactId>jetty-servlet</artifactId>
54-
<version>9.3.0.M0</version>
5550
<scope>test</scope>
5651
</dependency>
5752
</dependencies>

weixin-java-mp/pom.xml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>me.chanjar</groupId>
7+
<groupId>com.github.binarywang</groupId>
88
<artifactId>weixin-java-parent</artifactId>
9-
<version>1.3.4-SNAPSHOT</version>
9+
<version>1.3.5-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>weixin-java-mp</artifactId>
1212
<name>WeiXin Java Tools - MP</name>
1313
<description>微信公众号Java SDK</description>
1414

1515
<dependencies>
1616
<dependency>
17-
<groupId>me.chanjar</groupId>
17+
<groupId>com.github.binarywang</groupId>
1818
<artifactId>weixin-java-common</artifactId>
1919
<version>${project.version}</version>
2020
</dependency>
@@ -26,31 +26,26 @@
2626
<dependency>
2727
<groupId>org.testng</groupId>
2828
<artifactId>testng</artifactId>
29-
<version>6.8.7</version>
3029
<scope>test</scope>
3130
</dependency>
3231
<dependency>
3332
<groupId>org.mockito</groupId>
3433
<artifactId>mockito-all</artifactId>
35-
<version>1.9.5</version>
3634
<scope>test</scope>
3735
</dependency>
3836
<dependency>
3937
<groupId>com.google.inject</groupId>
4038
<artifactId>guice</artifactId>
41-
<version>3.0</version>
4239
<scope>test</scope>
4340
</dependency>
4441
<dependency>
4542
<groupId>org.eclipse.jetty</groupId>
4643
<artifactId>jetty-server</artifactId>
47-
<version>9.3.0.M0</version>
4844
<scope>test</scope>
4945
</dependency>
5046
<dependency>
5147
<groupId>org.eclipse.jetty</groupId>
5248
<artifactId>jetty-servlet</artifactId>
53-
<version>9.3.0.M0</version>
5449
<scope>test</scope>
5550
</dependency>
5651
</dependencies>

0 commit comments

Comments
 (0)