Skip to content

Commit 1d0919e

Browse files
committed
update version
1 parent 880b9fd commit 1d0919e

File tree

8 files changed

+446
-4
lines changed

8 files changed

+446
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>me.chanjar</groupId>
77
<artifactId>weixin-java-parent</artifactId>
8-
<version>1.0.5-SNAPSHOT</version>
8+
<version>1.0.5</version>
99
<packaging>pom</packaging>
1010
<name>WeiXin Java Tools - Parent</name>
1111
<description>微信公众号、企业号上级POM</description>

pom.xml.versionsBackup

Lines changed: 229 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,229 @@
1+
<?xml version="1.0"?>
2+
<project
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>me.chanjar</groupId>
7+
<artifactId>weixin-java-parent</artifactId>
8+
<version>1.0.5-SNAPSHOT</version>
9+
<packaging>pom</packaging>
10+
<name>WeiXin Java Tools - Parent</name>
11+
<description>微信公众号、企业号上级POM</description>
12+
<url>https://github.com/chanjarster/weixin-java-tools</url>
13+
14+
<licenses>
15+
<license>
16+
<name>The Apache License, Version 2.0</name>
17+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18+
</license>
19+
</licenses>
20+
21+
<developers>
22+
<developer>
23+
<name>Daniel Qian</name>
24+
<email>chanjarster@gmail.com</email>
25+
</developer>
26+
</developers>
27+
28+
<scm>
29+
<connection>scm:git:https://github.com/chanjarster/weixin-java-tools.git</connection>
30+
<developerConnection>scm:git:git@github.com:chanjarster/weixin-java-tools.git</developerConnection>
31+
<url>https://github.com/chanjarster/weixin-java-tools</url>
32+
</scm>
33+
34+
<modules>
35+
<module>weixin-java-common</module>
36+
<module>weixin-java-cp</module>
37+
<module>weixin-java-mp</module>
38+
</modules>
39+
40+
<properties>
41+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42+
<downloadJavadocs>true</downloadJavadocs>
43+
<downloadSources>true</downloadSources>
44+
<httpclient.version>4.3.5</httpclient.version>
45+
</properties>
46+
47+
<dependencies>
48+
<dependency>
49+
<groupId>org.apache.httpcomponents</groupId>
50+
<artifactId>fluent-hc</artifactId>
51+
<version>${httpclient.version}</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.apache.httpcomponents</groupId>
55+
<artifactId>httpmime</artifactId>
56+
<version>${httpclient.version}</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>javax.xml.bind</groupId>
60+
<artifactId>jaxb-api</artifactId>
61+
<version>2.2.7</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>com.sun.xml.bind</groupId>
65+
<artifactId>jaxb-impl</artifactId>
66+
<version>2.2.7</version>
67+
</dependency>
68+
<dependency>
69+
<groupId>com.google.code.gson</groupId>
70+
<artifactId>gson</artifactId>
71+
<version>2.2.2</version>
72+
</dependency>
73+
<dependency>
74+
<groupId>commons-codec</groupId>
75+
<artifactId>commons-codec</artifactId>
76+
<version>1.9</version>
77+
</dependency>
78+
<dependency>
79+
<groupId>commons-io</groupId>
80+
<artifactId>commons-io</artifactId>
81+
<version>2.4</version>
82+
</dependency>
83+
</dependencies>
84+
85+
<dependencyManagement>
86+
<dependencies>
87+
<dependency>
88+
<groupId>junit</groupId>
89+
<artifactId>junit</artifactId>
90+
<version>4.11</version>
91+
<scope>test</scope>
92+
</dependency>
93+
<dependency>
94+
<groupId>com.google.inject</groupId>
95+
<artifactId>guice</artifactId>
96+
<version>3.0</version>
97+
<scope>test</scope>
98+
</dependency>
99+
<dependency>
100+
<groupId>org.testng</groupId>
101+
<artifactId>testng</artifactId>
102+
<version>6.8.7</version>
103+
<scope>test</scope>
104+
</dependency>
105+
<dependency>
106+
<groupId>org.mockito</groupId>
107+
<artifactId>mockito-all</artifactId>
108+
<version>1.9.5</version>
109+
<scope>test</scope>
110+
</dependency>
111+
<dependency>
112+
<groupId>org.eclipse.jetty</groupId>
113+
<artifactId>jetty-server</artifactId>
114+
<version>9.3.0.M0</version>
115+
<scope>test</scope>
116+
</dependency>
117+
<dependency>
118+
<groupId>org.eclipse.jetty</groupId>
119+
<artifactId>jetty-servlet</artifactId>
120+
<version>9.3.0.M0</version>
121+
<scope>test</scope>
122+
</dependency>
123+
</dependencies>
124+
</dependencyManagement>
125+
126+
<distributionManagement>
127+
<snapshotRepository>
128+
<id>ossrh</id>
129+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
130+
</snapshotRepository>
131+
<repository>
132+
<id>ossrh</id>
133+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
134+
</repository>
135+
</distributionManagement>
136+
137+
<profiles>
138+
<profile>
139+
<id>release</id>
140+
<build>
141+
<plugins>
142+
<plugin>
143+
<groupId>org.apache.maven.plugins</groupId>
144+
<artifactId>maven-source-plugin</artifactId>
145+
<version>2.2.1</version>
146+
<executions>
147+
<execution>
148+
<id>attach-sources</id>
149+
<goals>
150+
<goal>jar-no-fork</goal>
151+
</goals>
152+
</execution>
153+
</executions>
154+
</plugin>
155+
<plugin>
156+
<groupId>org.apache.maven.plugins</groupId>
157+
<artifactId>maven-javadoc-plugin</artifactId>
158+
<version>2.9.1</version>
159+
<executions>
160+
<execution>
161+
<id>attach-javadocs</id>
162+
<goals>
163+
<goal>jar</goal>
164+
</goals>
165+
</execution>
166+
</executions>
167+
<configuration>
168+
<charset>UTF-8</charset>
169+
<locale>zh_CN</locale>
170+
</configuration>
171+
</plugin>
172+
<plugin>
173+
<groupId>org.apache.maven.plugins</groupId>
174+
<artifactId>maven-gpg-plugin</artifactId>
175+
<version>1.5</version>
176+
<executions>
177+
<execution>
178+
<id>sign-artifacts</id>
179+
<phase>verify</phase>
180+
<goals>
181+
<goal>sign</goal>
182+
</goals>
183+
</execution>
184+
</executions>
185+
</plugin>
186+
</plugins>
187+
</build>
188+
</profile>
189+
</profiles>
190+
191+
<build>
192+
<pluginManagement>
193+
<plugins>
194+
<plugin>
195+
<groupId>org.apache.maven.plugins</groupId>
196+
<artifactId>maven-surefire-plugin</artifactId>
197+
<version>2.17</version>
198+
</plugin>
199+
</plugins>
200+
</pluginManagement>
201+
202+
<plugins>
203+
<plugin>
204+
<groupId>org.sonatype.plugins</groupId>
205+
<artifactId>nexus-staging-maven-plugin</artifactId>
206+
<version>1.6.3</version>
207+
<extensions>true</extensions>
208+
<configuration>
209+
<serverId>ossrh</serverId>
210+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
211+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
212+
</configuration>
213+
</plugin>
214+
<plugin>
215+
<groupId>org.apache.maven.plugins</groupId>
216+
<artifactId>maven-release-plugin</artifactId>
217+
<version>2.5</version>
218+
<configuration>
219+
<autoVersionSubmodules>true</autoVersionSubmodules>
220+
<useReleaseProfile>false</useReleaseProfile>
221+
<releaseProfiles>release</releaseProfiles>
222+
<goals>deploy</goals>
223+
</configuration>
224+
</plugin>
225+
</plugins>
226+
</build>
227+
228+
229+
</project>

weixin-java-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>me.chanjar</groupId>
88
<artifactId>weixin-java-parent</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
</parent>
1111

1212
<artifactId>weixin-java-common</artifactId>
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<?xml version="1.0"?>
2+
<project
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>me.chanjar</groupId>
8+
<artifactId>weixin-java-parent</artifactId>
9+
<version>1.0.5-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>weixin-java-common</artifactId>
13+
<name>WeiXin Java Tools - Common</name>
14+
<description>微信公众号、企业号Java SDK Common</description>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>junit</groupId>
19+
<artifactId>junit</artifactId>
20+
<scope>test</scope>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.testng</groupId>
24+
<artifactId>testng</artifactId>
25+
<version>6.8.7</version>
26+
<scope>test</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.mockito</groupId>
30+
<artifactId>mockito-all</artifactId>
31+
<version>1.9.5</version>
32+
<scope>test</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>com.google.inject</groupId>
36+
<artifactId>guice</artifactId>
37+
<version>3.0</version>
38+
<scope>test</scope>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.eclipse.jetty</groupId>
42+
<artifactId>jetty-server</artifactId>
43+
<version>9.3.0.M0</version>
44+
<scope>test</scope>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.eclipse.jetty</groupId>
48+
<artifactId>jetty-servlet</artifactId>
49+
<version>9.3.0.M0</version>
50+
<scope>test</scope>
51+
</dependency>
52+
</dependencies>
53+
54+
<build>
55+
<plugins>
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-surefire-plugin</artifactId>
59+
<configuration>
60+
<suiteXmlFiles>
61+
<suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
62+
</suiteXmlFiles>
63+
</configuration>
64+
</plugin>
65+
</plugins>
66+
</build>
67+
68+
</project>

weixin-java-cp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>me.chanjar</groupId>
88
<artifactId>weixin-java-parent</artifactId>
9-
<version>1.0.5-SNAPSHOT</version>
9+
<version>1.0.5</version>
1010
</parent>
1111

1212
<artifactId>weixin-java-cp</artifactId>
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<?xml version="1.0"?>
2+
<project
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>me.chanjar</groupId>
8+
<artifactId>weixin-java-parent</artifactId>
9+
<version>1.0.5-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>weixin-java-cp</artifactId>
13+
<name>WeiXin Java Tools - CP</name>
14+
<description>微信企业号Java SDK</description>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>me.chanjar</groupId>
19+
<artifactId>weixin-java-common</artifactId>
20+
<version>${project.version}</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>junit</groupId>
24+
<artifactId>junit</artifactId>
25+
<scope>test</scope>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.testng</groupId>
29+
<artifactId>testng</artifactId>
30+
<version>6.8.7</version>
31+
<scope>test</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.mockito</groupId>
35+
<artifactId>mockito-all</artifactId>
36+
<version>1.9.5</version>
37+
<scope>test</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.google.inject</groupId>
41+
<artifactId>guice</artifactId>
42+
<version>3.0</version>
43+
<scope>test</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.eclipse.jetty</groupId>
47+
<artifactId>jetty-server</artifactId>
48+
<version>9.3.0.M0</version>
49+
<scope>test</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.eclipse.jetty</groupId>
53+
<artifactId>jetty-servlet</artifactId>
54+
<version>9.3.0.M0</version>
55+
<scope>test</scope>
56+
</dependency>
57+
</dependencies>
58+
59+
<build>
60+
<plugins>
61+
<plugin>
62+
<groupId>org.apache.maven.plugins</groupId>
63+
<artifactId>maven-surefire-plugin</artifactId>
64+
<configuration>
65+
<suiteXmlFiles>
66+
<suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
67+
</suiteXmlFiles>
68+
</configuration>
69+
</plugin>
70+
</plugins>
71+
</build>
72+
73+
</project>

0 commit comments

Comments
 (0)