Skip to content

Commit 12431db

Browse files
Bump httpclient from 4.3.6 to 4.5.3
1 parent dd97ce7 commit 12431db

File tree

1 file changed

+196
-196
lines changed

1 file changed

+196
-196
lines changed

pom.xml

Lines changed: 196 additions & 196 deletions
Original file line numberDiff line numberDiff line change
@@ -1,197 +1,197 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
5-
<groupId>com.github.liyiorg</groupId>
6-
<artifactId>weixin-popular</artifactId>
7-
<version>2.8.31</version>
8-
9-
<name>weixin-popular</name>
10-
<description>The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.</description>
11-
<url>https://github.com/liyiorg/weixin-popular</url>
12-
13-
<licenses>
14-
<license>
15-
<name>The Apache Software License, Version 2.0</name>
16-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17-
</license>
18-
</licenses>
19-
20-
<developers>
21-
<developer>
22-
<name>Yi Li</name>
23-
<email>liuemc@msn.com</email>
24-
</developer>
25-
</developers>
26-
27-
<scm>
28-
<connection>scm:git:git@github.com:liyiorg/weixin-popular.git</connection>
29-
<developerConnection>scm:git:git@github.com:liyiorg/weixin-popular.git</developerConnection>
30-
<url>git@github.com:liyiorg/weixin-popular.git</url>
31-
</scm>
32-
33-
<properties>
34-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
36-
</properties>
37-
38-
<dependencies>
39-
<dependency>
40-
<groupId>javax.servlet</groupId>
41-
<artifactId>servlet-api</artifactId>
42-
<version>2.5</version>
43-
<scope>provided</scope>
44-
</dependency>
45-
<dependency>
46-
<groupId>redis.clients</groupId>
47-
<artifactId>jedis</artifactId>
48-
<version>2.7.3</version>
49-
<scope>provided</scope>
50-
</dependency>
51-
<dependency>
52-
<groupId>org.apache.commons</groupId>
53-
<artifactId>commons-pool2</artifactId>
54-
<version>2.3</version>
55-
<scope>provided</scope>
56-
</dependency>
57-
<dependency>
58-
<groupId>com.alibaba</groupId>
59-
<artifactId>fastjson</artifactId>
60-
<version>1.2.47</version>
61-
</dependency>
62-
<dependency>
63-
<groupId>org.apache.httpcomponents</groupId>
64-
<artifactId>httpclient</artifactId>
65-
<version>4.3.6</version>
66-
</dependency>
67-
<dependency>
68-
<groupId>org.apache.httpcomponents</groupId>
69-
<artifactId>httpmime</artifactId>
70-
<version>4.3.6</version>
71-
</dependency>
72-
<dependency>
73-
<groupId>com.sun.xml.bind</groupId>
74-
<artifactId>jaxb-impl</artifactId>
75-
<version>2.1.12</version>
76-
<exclusions>
77-
<exclusion>
78-
<groupId>javax.xml.bind</groupId>
79-
<artifactId>jaxb-api</artifactId>
80-
</exclusion>
81-
</exclusions>
82-
</dependency>
83-
<dependency>
84-
<groupId>org.slf4j</groupId>
85-
<artifactId>slf4j-api</artifactId>
86-
<version>1.7.19</version>
87-
</dependency>
88-
<dependency>
89-
<groupId>org.slf4j</groupId>
90-
<artifactId>slf4j-simple</artifactId>
91-
<version>1.7.19</version>
92-
<scope>provided</scope>
93-
</dependency>
94-
<dependency>
95-
<groupId>com.vdurmont</groupId>
96-
<artifactId>emoji-java</artifactId>
97-
<version>4.0.0</version>
98-
</dependency>
99-
</dependencies>
100-
101-
<build>
102-
<plugins>
103-
<plugin>
104-
<groupId>org.apache.maven.plugins</groupId>
105-
<artifactId>maven-compiler-plugin</artifactId>
106-
<version>2.3.2</version>
107-
<configuration>
108-
<source>1.7</source>
109-
<target>1.7</target>
110-
<encoding>UTF-8</encoding>
111-
</configuration>
112-
</plugin>
113-
114-
</plugins>
115-
</build>
116-
117-
<profiles>
118-
<profile>
119-
<id>release</id>
120-
<build>
121-
<plugins>
122-
<plugin>
123-
<groupId>org.apache.maven.plugins</groupId>
124-
<artifactId>maven-source-plugin</artifactId>
125-
<version>2.3</version>
126-
<executions>
127-
<execution>
128-
<id>attach-sources</id>
129-
<goals>
130-
<goal>jar-no-fork</goal>
131-
</goals>
132-
</execution>
133-
</executions>
134-
</plugin>
135-
<plugin>
136-
<groupId>org.apache.maven.plugins</groupId>
137-
<artifactId>maven-javadoc-plugin</artifactId>
138-
<version>2.10.4</version>
139-
<configuration>
140-
<charset>utf-8</charset>
141-
<encoding>utf-8</encoding>
142-
<docencoding>utf-8</docencoding>
143-
<locale>zh_CN</locale>
144-
<show>public</show>
145-
<excludePackageNames>weixin.popular.bean.*</excludePackageNames>
146-
</configuration>
147-
<executions>
148-
<execution>
149-
<id>attach-javadocs</id>
150-
<goals>
151-
<goal>jar</goal>
152-
</goals>
153-
</execution>
154-
</executions>
155-
</plugin>
156-
<plugin>
157-
<groupId>org.apache.maven.plugins</groupId>
158-
<artifactId>maven-gpg-plugin</artifactId>
159-
<version>1.5</version>
160-
<executions>
161-
<execution>
162-
<phase>verify</phase>
163-
<goals>
164-
<goal>sign</goal>
165-
</goals>
166-
</execution>
167-
</executions>
168-
</plugin>
169-
<plugin>
170-
<groupId>org.sonatype.plugins</groupId>
171-
<artifactId>nexus-staging-maven-plugin</artifactId>
172-
<version>1.6.4</version>
173-
<extensions>true</extensions>
174-
<configuration>
175-
<serverId>oss</serverId>
176-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
177-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
178-
</configuration>
179-
</plugin>
180-
</plugins>
181-
</build>
182-
</profile>
183-
</profiles>
184-
185-
<distributionManagement>
186-
<snapshotRepository>
187-
<id>oss</id>
188-
<name>Sonatype Nexus Snapshots</name>
189-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
190-
</snapshotRepository>
191-
<repository>
192-
<id>oss</id>
193-
<name>Nexus Release Repository</name>
194-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
195-
</repository>
196-
</distributionManagement>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>com.github.liyiorg</groupId>
6+
<artifactId>weixin-popular</artifactId>
7+
<version>2.8.31</version>
8+
9+
<name>weixin-popular</name>
10+
<description>The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.</description>
11+
<url>https://github.com/liyiorg/weixin-popular</url>
12+
13+
<licenses>
14+
<license>
15+
<name>The Apache Software License, Version 2.0</name>
16+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17+
</license>
18+
</licenses>
19+
20+
<developers>
21+
<developer>
22+
<name>Yi Li</name>
23+
<email>liuemc@msn.com</email>
24+
</developer>
25+
</developers>
26+
27+
<scm>
28+
<connection>scm:git:git@github.com:liyiorg/weixin-popular.git</connection>
29+
<developerConnection>scm:git:git@github.com:liyiorg/weixin-popular.git</developerConnection>
30+
<url>git@github.com:liyiorg/weixin-popular.git</url>
31+
</scm>
32+
33+
<properties>
34+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
36+
</properties>
37+
38+
<dependencies>
39+
<dependency>
40+
<groupId>javax.servlet</groupId>
41+
<artifactId>servlet-api</artifactId>
42+
<version>2.5</version>
43+
<scope>provided</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>redis.clients</groupId>
47+
<artifactId>jedis</artifactId>
48+
<version>2.7.3</version>
49+
<scope>provided</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.apache.commons</groupId>
53+
<artifactId>commons-pool2</artifactId>
54+
<version>2.3</version>
55+
<scope>provided</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>com.alibaba</groupId>
59+
<artifactId>fastjson</artifactId>
60+
<version>1.2.47</version>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.apache.httpcomponents</groupId>
64+
<artifactId>httpclient</artifactId>
65+
<version>4.5.3</version>
66+
</dependency>
67+
<dependency>
68+
<groupId>org.apache.httpcomponents</groupId>
69+
<artifactId>httpmime</artifactId>
70+
<version>4.3.6</version>
71+
</dependency>
72+
<dependency>
73+
<groupId>com.sun.xml.bind</groupId>
74+
<artifactId>jaxb-impl</artifactId>
75+
<version>2.1.12</version>
76+
<exclusions>
77+
<exclusion>
78+
<groupId>javax.xml.bind</groupId>
79+
<artifactId>jaxb-api</artifactId>
80+
</exclusion>
81+
</exclusions>
82+
</dependency>
83+
<dependency>
84+
<groupId>org.slf4j</groupId>
85+
<artifactId>slf4j-api</artifactId>
86+
<version>1.7.19</version>
87+
</dependency>
88+
<dependency>
89+
<groupId>org.slf4j</groupId>
90+
<artifactId>slf4j-simple</artifactId>
91+
<version>1.7.19</version>
92+
<scope>provided</scope>
93+
</dependency>
94+
<dependency>
95+
<groupId>com.vdurmont</groupId>
96+
<artifactId>emoji-java</artifactId>
97+
<version>4.0.0</version>
98+
</dependency>
99+
</dependencies>
100+
101+
<build>
102+
<plugins>
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-compiler-plugin</artifactId>
106+
<version>2.3.2</version>
107+
<configuration>
108+
<source>1.7</source>
109+
<target>1.7</target>
110+
<encoding>UTF-8</encoding>
111+
</configuration>
112+
</plugin>
113+
114+
</plugins>
115+
</build>
116+
117+
<profiles>
118+
<profile>
119+
<id>release</id>
120+
<build>
121+
<plugins>
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-source-plugin</artifactId>
125+
<version>2.3</version>
126+
<executions>
127+
<execution>
128+
<id>attach-sources</id>
129+
<goals>
130+
<goal>jar-no-fork</goal>
131+
</goals>
132+
</execution>
133+
</executions>
134+
</plugin>
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-javadoc-plugin</artifactId>
138+
<version>2.10.4</version>
139+
<configuration>
140+
<charset>utf-8</charset>
141+
<encoding>utf-8</encoding>
142+
<docencoding>utf-8</docencoding>
143+
<locale>zh_CN</locale>
144+
<show>public</show>
145+
<excludePackageNames>weixin.popular.bean.*</excludePackageNames>
146+
</configuration>
147+
<executions>
148+
<execution>
149+
<id>attach-javadocs</id>
150+
<goals>
151+
<goal>jar</goal>
152+
</goals>
153+
</execution>
154+
</executions>
155+
</plugin>
156+
<plugin>
157+
<groupId>org.apache.maven.plugins</groupId>
158+
<artifactId>maven-gpg-plugin</artifactId>
159+
<version>1.5</version>
160+
<executions>
161+
<execution>
162+
<phase>verify</phase>
163+
<goals>
164+
<goal>sign</goal>
165+
</goals>
166+
</execution>
167+
</executions>
168+
</plugin>
169+
<plugin>
170+
<groupId>org.sonatype.plugins</groupId>
171+
<artifactId>nexus-staging-maven-plugin</artifactId>
172+
<version>1.6.4</version>
173+
<extensions>true</extensions>
174+
<configuration>
175+
<serverId>oss</serverId>
176+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
177+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
178+
</configuration>
179+
</plugin>
180+
</plugins>
181+
</build>
182+
</profile>
183+
</profiles>
184+
185+
<distributionManagement>
186+
<snapshotRepository>
187+
<id>oss</id>
188+
<name>Sonatype Nexus Snapshots</name>
189+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
190+
</snapshotRepository>
191+
<repository>
192+
<id>oss</id>
193+
<name>Nexus Release Repository</name>
194+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
195+
</repository>
196+
</distributionManagement>
197197
</project>

0 commit comments

Comments
 (0)