Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: Add common httpclient and oauth dependencies (#391)
* fix: Add common httpclient and oauth dependencies to java-shared-dependencies

* fix: httpcore version

* fix: address comments
  • Loading branch information
dpcollins-google committed Jun 24, 2021
1 parent 00288c1 commit 09660e1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pom.xml
Expand Up @@ -65,6 +65,7 @@
<google.core.version>1.95.3</google.core.version>
<google.auth.version>0.26.0</google.auth.version>
<google.http-client.version>1.39.2</google.http-client.version>
<google.oauth-client.version>1.31.5</google.oauth-client.version>
<google.api-client.version>1.32.1</google.api-client.version>
<gson.version>2.8.7</gson.version>
<threeten.version>1.5.1</threeten.version>
Expand All @@ -76,6 +77,8 @@
<errorprone.version>2.7.1</errorprone.version>
<jackson.version>2.12.3</jackson.version>
<codec.version>1.15</codec.version>
<httpcomponents.httpcore.version>4.4.14</httpcomponents.httpcore.version>
<httpcomponents.httpclient.version>4.5.13</httpcomponents.httpclient.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -114,6 +117,19 @@
<type>pom</type>
<scope>import</scope>
</dependency>


<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>${httpcomponents.httpcore.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpcomponents.httpclient.version}</version>
</dependency>

<dependency>
<groupId>com.google.api</groupId>
<artifactId>api-common</artifactId>
Expand Down Expand Up @@ -155,6 +171,13 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.oauth-client</groupId>
<artifactId>google-oauth-client-bom</artifactId>
<version>${google.oauth-client.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-bom</artifactId>
Expand Down

0 comments on commit 09660e1

Please sign in to comment.