Skip to content

Commit 663e7fc

Browse files
committed
rename project variable to apache-httpxxx-4
1 parent e472ce6 commit 663e7fc

File tree

4 files changed

+20
-10
lines changed

4 files changed

+20
-10
lines changed

google-http-client-apache-v5/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,10 @@
102102
<dependency>
103103
<groupId>org.apache.httpcomponents.client5</groupId>
104104
<artifactId>httpclient5</artifactId>
105-
<version>5.3.1</version>
106105
</dependency>
107106
<dependency>
108107
<groupId>org.apache.httpcomponents.core5</groupId>
109108
<artifactId>httpcore5</artifactId>
110-
<version>5.2.4</version>
111109
</dependency>
112110
<dependency>
113111
<groupId>com.google.api-client</groupId>

google-http-client-assembly/classpath-include

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<classpathentry kind="lib" path="libs/google-http-client-xml-${project.version}.jar" sourcepath="libs-sources/google-http-client-xml-${project.version}-sources.jar"/>
88
<classpathentry kind="lib" path="libs/commons-logging-${project.commons-logging.version}.jar" sourcepath="libs-sources/commons-logging-${project.commons-logging.version}-sources.jar"/>
99
<classpathentry kind="lib" path="libs/gson-${project.gson.version}.jar" sourcepath="libs-sources/gson-${project.gson.version}-sources.jar"/>
10-
<classpathentry kind="lib" path="libs/httpclient-${project.httpclient.version}.jar" sourcepath="libs-sources/httpclient-${project.httpclient.version}-sources.jar"/>
11-
<classpathentry kind="lib" path="libs/httpcore-${project.httpcore.version}.jar" sourcepath="libs-sources/httpcore-${project.httpcore.version}-sources.jar"/>
10+
<classpathentry kind="lib" path="libs/httpclient-${project.apache-httpclient-4.version}.jar" sourcepath="libs-sources/httpclient-${project.apache-httpclient-4.version}-sources.jar"/>
11+
<classpathentry kind="lib" path="libs/httpcore-${project.apache-httpcore-4.version}.jar" sourcepath="libs-sources/httpcore-${project.apache-httpcore-4.version}-sources.jar"/>
1212
<classpathentry kind="lib" path="libs/jackson-core-asl-${project.jackson-core-asl.version}.jar" sourcepath="libs-sources/jackson-core-asl-${project.jackson-core-asl.version}-sources.jar"/>
1313
<classpathentry kind="lib" path="libs/jackson-core-${project.jackson-core2.version}.jar" sourcepath="libs-sources/jackson-core-${project.jackson-core2.version}-sources.jar"/>
1414
<classpathentry kind="lib" path="libs/jsr305-${project.jsr305.version}.jar"/>

google-http-client-assembly/readme.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ <h3>General Purpose Java Environment Dependencies</h3>
135135
required for general purpose Java applications :
136136
<ul>
137137
<li>commons-logging-${project.commons-logging.version}.jar</li>
138-
<li>httpclient-${project.httpclient.version}.jar</li>
139-
<li>httpcore-${project.httpcore.version}.jar</li>
138+
<li>httpclient-${project.apache-httpclient-4.version}.jar</li>
139+
<li>httpcore-${project.apache-httpcore-4.version}.jar</li>
140140
</ul>
141141

142142
</body>

pom.xml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,22 @@
157157
<dependency>
158158
<groupId>org.apache.httpcomponents</groupId>
159159
<artifactId>httpclient</artifactId>
160-
<version>${project.httpclient.version}</version>
160+
<version>${project.apache-httpclient-4.version}</version>
161161
</dependency>
162162
<dependency>
163163
<groupId>org.apache.httpcomponents</groupId>
164164
<artifactId>httpcore</artifactId>
165-
<version>${project.httpcore.version}</version>
165+
<version>${project.apache-httpcore-4.version}</version>
166+
</dependency>
167+
<dependency>
168+
<groupId>org.apache.httpcomponents.client5</groupId>
169+
<artifactId>httpclient5</artifactId>
170+
<version>${project.apache-httpclient-5.version}</version>
171+
</dependency>
172+
<dependency>
173+
<groupId>org.apache.httpcomponents.core5</groupId>
174+
<artifactId>httpcore5</artifactId>
175+
<version>${project.apache-httpcore-5.version}</version>
166176
</dependency>
167177
<dependency>
168178
<groupId>com.google.guava</groupId>
@@ -602,8 +612,10 @@
602612
<project.protobuf-java.version>3.21.12</project.protobuf-java.version>
603613
<project.guava.version>30.1.1-android</project.guava.version>
604614
<project.xpp3.version>1.1.4c</project.xpp3.version>
605-
<project.httpclient.version>4.5.14</project.httpclient.version>
606-
<project.httpcore.version>4.4.16</project.httpcore.version>
615+
<project.apache-httpclient-4.version>4.5.14</project.apache-httpclient-4.version>
616+
<project.apache-httpcore-4.version>4.4.16</project.apache-httpcore-4.version>
617+
<project.apache-httpclient-5.version>5.3.1</project.apache-httpclient-5.version>
618+
<project.apache-httpcore-5.version>5.2.4</project.apache-httpcore-5.version>
607619
<project.opencensus.version>0.31.1</project.opencensus.version>
608620
<project.root-directory>..</project.root-directory>
609621
<project.surefire.version>3.2.5</project.surefire.version>

0 commit comments

Comments
 (0)