You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2021/11/06 13:56:53 UTC

[httpcomponents-core] branch master updated: Use project modules dependency management.

This is an automated email from the ASF dual-hosted git repository.

olegk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/httpcomponents-core.git


The following commit(s) were added to refs/heads/master by this push:
     new 70632e5  Use project modules dependency management.
70632e5 is described below

commit 70632e53f78ec734e730e1e6576d15de8bbd37a0
Author: Arturo Bernal <ar...@gmail.com>
AuthorDate: Fri Nov 5 19:40:43 2021 +0100

    Use project modules dependency management.
---
 httpcore5-h2/pom.xml       |  1 -
 httpcore5-reactive/pom.xml |  1 -
 httpcore5-testing/pom.xml  |  3 ---
 pom.xml                    | 20 ++++++++++++++++++++
 4 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/httpcore5-h2/pom.xml b/httpcore5-h2/pom.xml
index 4ba4fac..ded573d 100644
--- a/httpcore5-h2/pom.xml
+++ b/httpcore5-h2/pom.xml
@@ -42,7 +42,6 @@
     <dependency>
       <groupId>org.apache.httpcomponents.core5</groupId>
       <artifactId>httpcore5</artifactId>
-      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>org.conscrypt</groupId>
diff --git a/httpcore5-reactive/pom.xml b/httpcore5-reactive/pom.xml
index 9fd5e04..721518c 100644
--- a/httpcore5-reactive/pom.xml
+++ b/httpcore5-reactive/pom.xml
@@ -43,7 +43,6 @@
     <dependency>
       <groupId>org.apache.httpcomponents.core5</groupId>
       <artifactId>httpcore5</artifactId>
-      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>org.reactivestreams</groupId>
diff --git a/httpcore5-testing/pom.xml b/httpcore5-testing/pom.xml
index 58e0a6c..20b9cbd 100644
--- a/httpcore5-testing/pom.xml
+++ b/httpcore5-testing/pom.xml
@@ -42,17 +42,14 @@
     <dependency>
       <groupId>org.apache.httpcomponents.core5</groupId>
       <artifactId>httpcore5</artifactId>
-      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.httpcomponents.core5</groupId>
       <artifactId>httpcore5-h2</artifactId>
-      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.httpcomponents.core5</groupId>
       <artifactId>httpcore5-reactive</artifactId>
-      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>commons-cli</groupId>
diff --git a/pom.xml b/pom.xml
index 4e5d792..40e1196 100644
--- a/pom.xml
+++ b/pom.xml
@@ -85,6 +85,26 @@
   <dependencyManagement>
     <dependencies>
       <dependency>
+        <groupId>org.apache.httpcomponents.core5</groupId>
+        <artifactId>httpcore5</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.httpcomponents.core5</groupId>
+        <artifactId>httpcore5-h2</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.httpcomponents.core5</groupId>
+        <artifactId>httpcore5-reactive</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.httpcomponents.core5</groupId>
+        <artifactId>httpcore5-testing</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
         <groupId>org.conscrypt</groupId>
         <artifactId>conscrypt-openjdk-uber</artifactId>
         <version>${conscrypt.version}</version>