You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by mi...@apache.org on 2020/09/02 19:01:18 UTC

[httpcomponents-parent] branch master updated (071be26 -> 6bfaac8)

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

michaelo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git.


    from 071be26  Update copyright for 2020.
     add 9f6a5d1  Add myself
     new c6b3f34  Replace HTTP with HTTPS
     new 3d02301  Upgrad Parent to 23
     new e768f17  Use unique Surefire version throughout
     new de1e3a5  Remove no-op parameter
     new 063cf9c  Update Plugins
     new df3b6e1  Fix report names for MPIR
     new 5790541  Update SCM URLs
     new 6f38e98  Remove manifest entries w/o benefits or non-reproducible
     new 0042bbf  Remove only once used properties
     new d20cbd0  Unify manifest config
     new 6bfaac8  Remove default config

The 11 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 192 ++++++++++++++++------------------------------------------------
 1 file changed, 48 insertions(+), 144 deletions(-)


[httpcomponents-parent] 08/11: Remove manifest entries w/o benefits or non-reproducible

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 6f38e98cd619bd6d1a207f5b08ce2941fe708b32
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Aug 29 23:11:34 2020 +0200

    Remove manifest entries w/o benefits or non-reproducible
---
 pom.xml | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/pom.xml b/pom.xml
index ed3cc0f..899c108 100644
--- a/pom.xml
+++ b/pom.xml
@@ -486,10 +486,6 @@ Fixed JIRA link
           <archive>
             <manifestEntries>
               <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
-              <!-- from buildnumber plugin and properties -->
-              <Implementation-Build>${implementation.build}</Implementation-Build>
-              <X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK>
-              <X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK>
             </manifestEntries>
           </archive>
         </configuration>
@@ -604,11 +600,6 @@ Fixed JIRA link
         </plugin>
         <plugin>
           <groupId>org.codehaus.mojo</groupId>
-          <artifactId>buildnumber-maven-plugin</artifactId>
-          <version>1.4</version>
-        </plugin>
-        <plugin>
-          <groupId>org.codehaus.mojo</groupId>
           <artifactId>clirr-maven-plugin</artifactId>
           <version>${hc.clirr.version}</version>
           <configuration>
@@ -946,10 +937,6 @@ Fixed JIRA link
     <hc.coveralls.version>4.3.0</hc.coveralls.version>
     <hc.coveralls.timestampFormat>EpochMillis</hc.coveralls.timestampFormat>
 
-    <!-- build meta inf -->
-    <maven.build.timestamp.format>yyyy-MM-dd HH:mm:ssZ</maven.build.timestamp.format>
-    <implementation.build>${scmBranch}@r${buildNumber}; ${maven.build.timestamp}</implementation.build>
-
     <!-- Allow Clirr severity to be overriden by the command-line option -DminSeverity=level -->
     <minSeverity>info</minSeverity>
   </properties>


[httpcomponents-parent] 07/11: Update SCM URLs

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 57905413f2f7823c505a4e93f0588e20b7bc701c
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Aug 29 23:08:52 2020 +0200

    Update SCM URLs
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1ab6f0d..ed3cc0f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -205,8 +205,8 @@ Fixed JIRA link
   </issueManagement>
 
   <scm>
-    <connection>scm:git:https://git-wip-us.apache.org/repos/asf/httpcomponents-parent.git</connection>
-    <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/httpcomponents-parent.git</developerConnection>
+    <connection>scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-parent.git</connection>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/httpcomponents-parent.git</developerConnection>
     <url>https://github.com/apache/httpcomponents-parent/tree/${project.scm.tag}</url>
     <tag>master</tag>
   </scm>


[httpcomponents-parent] 04/11: Remove no-op parameter

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit de1e3a5e98c93f1e4d8fd1036d7a68ab4ffd497f
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Aug 29 22:48:08 2020 +0200

    Remove no-op parameter
---
 pom.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 643b7dd..eb407de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -931,7 +931,6 @@ Fixed JIRA link
 
   <properties>
     <!-- compiler source and target must now be defined at component level -->
-    <maven.compiler.optimize>true</maven.compiler.optimize>
     <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>


[httpcomponents-parent] 05/11: Update Plugins

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 063cf9cedb0701f61331b977360725ece5c97e1a
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Aug 29 23:02:08 2020 +0200

    Update Plugins
---
 pom.xml | 27 +++++++++++----------------
 1 file changed, 11 insertions(+), 16 deletions(-)

diff --git a/pom.xml b/pom.xml
index eb407de..2595ad4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -557,12 +557,12 @@ Fixed JIRA link
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-site-plugin</artifactId>
-          <version>3.7.1</version>
+          <version>3.9.1</version>
           <dependencies>
             <dependency>
               <groupId>org.apache.maven.wagon</groupId>
               <artifactId>wagon-ssh</artifactId>
-              <version>3.2.0</version>
+              <version>3.4.1</version>
             </dependency>
           </dependencies>
         </plugin>
@@ -603,11 +603,6 @@ Fixed JIRA link
           </dependencies>
         </plugin>
         <plugin>
-          <groupId>org.apache.felix</groupId>
-          <artifactId>maven-bundle-plugin</artifactId>
-          <version>3.5.1</version>
-        </plugin>
-        <plugin>
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>buildnumber-maven-plugin</artifactId>
           <version>1.4</version>
@@ -701,7 +696,7 @@ Fixed JIRA link
           <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>build-helper-maven-plugin</artifactId>
-            <version>3.0.0</version>
+            <version>3.2.0</version>
             <executions>
               <execution>
                 <id>parse-version</id>
@@ -885,7 +880,7 @@ Fixed JIRA link
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-toolchains-plugin</artifactId>
-            <version>1.1</version>
+            <version>3.0.0</version>
             <configuration>
               <toolchains>
                 <jdk>
@@ -911,7 +906,7 @@ Fixed JIRA link
           <plugin>
             <groupId>org.owasp</groupId>
             <artifactId>dependency-check-maven</artifactId>
-            <version>3.3.1</version>
+            <version>3.3.4</version>
             <reportSets>
               <reportSet>
                 <reports>
@@ -938,15 +933,15 @@ Fixed JIRA link
 
     <!-- Define versions of all report plugins, because they should match usage in pluginManagement and modules -->
     <hc.clirr.version>2.8</hc.clirr.version>
-    <hc.javadoc.version>3.0.1</hc.javadoc.version>
+    <hc.javadoc.version>3.2.0</hc.javadoc.version>
     <hc.jxr.version>3.0.0</hc.jxr.version>
-    <hc.surefire.version>2.22.1</hc.surefire.version>
-    <hc.project-info.version>3.0.0</hc.project-info.version>
-    <hc.checkstyle.version>2.17</hc.checkstyle.version>
-    <hc.animal-sniffer.version>1.16</hc.animal-sniffer.version>
+    <hc.surefire.version>3.0.0-M5</hc.surefire.version>
+    <hc.project-info.version>3.1.0</hc.project-info.version>
+    <hc.checkstyle.version>3.0.0</hc.checkstyle.version>
+    <hc.animal-sniffer.version>1.17</hc.animal-sniffer.version>
     <hc.animal-sniffer.signature.version>1.0</hc.animal-sniffer.signature.version>
     <hc.animal-sniffer.signature.ignores></hc.animal-sniffer.signature.ignores>
-    <hc.jacoco.version>0.8.1</hc.jacoco.version>
+    <hc.jacoco.version>0.8.5</hc.jacoco.version>
     <hc.cobertura.version>2.7</hc.cobertura.version>
     <hc.coveralls.version>4.3.0</hc.coveralls.version>
     <hc.coveralls.timestampFormat>EpochMillis</hc.coveralls.timestampFormat>


[httpcomponents-parent] 01/11: Replace HTTP with HTTPS

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit c6b3f343c9d5b744e9e8dcf6a59735910b015379
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Aug 29 22:22:03 2020 +0200

    Replace HTTP with HTTPS
---
 pom.xml | 23 +++++++++++------------
 1 file changed, 11 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index 909dfd4..0189d2a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,7 +37,7 @@
   <version>12-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>Apache HttpComponents Parent</name>
-  <url>http://hc.apache.org/</url>
+  <url>https://hc.apache.org/</url>
   <description>Apache components to build HTTP enabled services</description>
   <inceptionYear>2005</inceptionYear>
 
@@ -200,7 +200,7 @@ Fixed JIRA link
 
   <organization>
     <name>Apache Software Foundation</name>
-    <url>http://www.apache.org/</url>
+    <url>https://www.apache.org/</url>
   </organization>
 
   <issueManagement>
@@ -424,8 +424,8 @@ Fixed JIRA link
       <post>mailto:httpclient-users@hc.apache.org</post>
       <archive>https://lists.apache.org/list.html?httpclient-users@hc.apache.org</archive>
       <otherArchives>
-        <otherArchive>http://marc.info/?l=httpclient-users</otherArchive>
-        <otherArchive>http://httpclient-users.markmail.org/search/</otherArchive>
+        <otherArchive>https://marc.info/?l=httpclient-users</otherArchive>
+        <otherArchive>https://httpclient-users.markmail.org/search/</otherArchive>
       </otherArchives>
     </mailingList>
     <mailingList>
@@ -435,28 +435,27 @@ Fixed JIRA link
       <post>mailto:dev@hc.apache.org</post>
       <archive>https://lists.apache.org/list.html?dev@hc.apache.org</archive>
       <otherArchives>
-        <otherArchive>http://marc.info/?l=httpclient-commons-dev</otherArchive>
-        <otherArchive>http://apache-hc-dev.markmail.org/search/</otherArchive>
+        <otherArchive>https://marc.info/?l=httpclient-commons-dev</otherArchive>
+        <otherArchive>https://apache-hc-dev.markmail.org/search/</otherArchive>
       </otherArchives>
     </mailingList>
     <mailingList>
       <name>HttpComponents Commits List</name>
       <subscribe>mailto:commits-subscribe@hc.apache.org</subscribe>
       <unsubscribe>mailto:commits-unsubscribe@hc.apache.org</unsubscribe>
-      <post>(Read Only)</post>
       <archive>https://lists.apache.org/list.html?commits@hc.apache.org</archive>
       <otherArchives>
-        <otherArchive>http://marc.info/?l=httpcomponents-commits</otherArchive>
-        <otherArchive>http://hc-commits.markmail.org/search/</otherArchive>
+        <otherArchive>https://marc.info/?l=httpcomponents-commits</otherArchive>
+        <otherArchive>https://hc-commits.markmail.org/search/</otherArchive>
       </otherArchives>
     </mailingList>
     <mailingList>
       <name>Apache Announce List</name>
       <subscribe>announce-subscribe@apache.org</subscribe>
       <unsubscribe>announce-unsubscribe@apache.org</unsubscribe>
-      <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive>
+      <archive>https://mail-archives.apache.org/mod_mbox/www-announce/</archive>
       <otherArchives>
-        <otherArchive>http://org-apache-announce.markmail.org/search/</otherArchive>
+        <otherArchive>https://org-apache-announce.markmail.org/search/</otherArchive>
       </otherArchives>
     </mailingList>
   </mailingLists>
@@ -474,7 +473,7 @@ Fixed JIRA link
     <repository>
       <id>apache.snapshots</id>
       <name>Apache Snapshot Repository</name>
-      <url>http://repository.apache.org/snapshots</url>
+      <url>https://repository.apache.org/snapshots</url>
       <releases>
         <enabled>false</enabled>
       </releases>


[httpcomponents-parent] 03/11: Use unique Surefire version throughout

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e768f172579ae148d891d7bb6b79f3a99596f9f0
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Aug 29 22:45:48 2020 +0200

    Use unique Surefire version throughout
---
 pom.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 71b368b..643b7dd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -586,7 +586,7 @@ Fixed JIRA link
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-report-plugin</artifactId>
-          <version>${hc.surefire-report.version}</version>
+          <version>${hc.surefire.version}</version>
         </plugin>
         <!-- Other plugins, alpha order by groupId and artifactId -->
         <plugin>
@@ -941,7 +941,6 @@ Fixed JIRA link
     <hc.clirr.version>2.8</hc.clirr.version>
     <hc.javadoc.version>3.0.1</hc.javadoc.version>
     <hc.jxr.version>3.0.0</hc.jxr.version>
-    <hc.surefire-report.version>2.22.1</hc.surefire-report.version>
     <hc.surefire.version>2.22.1</hc.surefire.version>
     <hc.project-info.version>3.0.0</hc.project-info.version>
     <hc.checkstyle.version>2.17</hc.checkstyle.version>


[httpcomponents-parent] 06/11: Fix report names for MPIR

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit df3b6e14f41e2c693789b5b20bcb450c10a75237
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Aug 29 23:04:59 2020 +0200

    Fix report names for MPIR
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2595ad4..1ab6f0d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -661,10 +661,10 @@ Fixed JIRA link
         <reportSets>
           <reportSet>
             <reports>
-              <report>project-team</report>
-              <report>issue-tracking</report>
+              <report>team</report>
+              <report>issue-management</report>
               <report>scm</report>
-              <report>mailing-list</report>
+              <report>mailing-lists</report>
             </reports>
           </reportSet>
         </reportSets>


[httpcomponents-parent] 11/11: Remove default config

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 6bfaac8a5297d402a6c5882574e43cbf5f63a1f1
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Aug 30 22:22:09 2020 +0200

    Remove default config
---
 pom.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7408422..337ba87 100644
--- a/pom.xml
+++ b/pom.xml
@@ -623,9 +623,6 @@ Fixed JIRA link
               <version>2</version>
             </dependency>
           </dependencies>
-          <configuration>
-            <encoding>${project.build.sourceEncoding}</encoding>
-          </configuration>
           <executions>
             <execution>
               <id>validate</id>


[httpcomponents-parent] 09/11: Remove only once used properties

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 0042bbf243cf8608f2d9e2184afc4665d8bf1bf7
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Aug 30 01:09:44 2020 +0200

    Remove only once used properties
---
 pom.xml | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/pom.xml b/pom.xml
index 899c108..c8990b6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -521,7 +521,7 @@ Fixed JIRA link
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-jxr-plugin</artifactId>
-          <version>${hc.jxr.version}</version>
+          <version>3.0.0</version>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
@@ -609,7 +609,7 @@ Fixed JIRA link
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-checkstyle-plugin</artifactId>
-          <version>${hc.checkstyle.version}</version>
+          <version>3.0.0</version>
           <dependencies>
             <dependency>
               <groupId>org.apache.httpcomponents</groupId>
@@ -732,7 +732,7 @@ Fixed JIRA link
           <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>animal-sniffer-maven-plugin</artifactId>
-            <version>${hc.animal-sniffer.version}</version>
+            <version>1.17</version>
             <executions>
               <execution>
                 <id>checkAPIcompatibility</id>
@@ -815,7 +815,7 @@ Fixed JIRA link
           <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>cobertura-maven-plugin</artifactId>
-            <version>${hc.cobertura.version}</version>
+            <version>2.7</version>
             <configuration>
               <formats>
                 <format>xml</format>
@@ -841,7 +841,7 @@ Fixed JIRA link
           <plugin>
             <groupId>org.jacoco</groupId>
             <artifactId>jacoco-maven-plugin</artifactId>
-            <version>${hc.jacoco.version}</version>
+            <version>0.8.5</version>
           </plugin>
           <plugin>
             <groupId>org.eluder.coveralls</groupId>
@@ -929,11 +929,8 @@ Fixed JIRA link
     <hc.surefire.version>3.0.0-M5</hc.surefire.version>
     <hc.project-info.version>3.1.0</hc.project-info.version>
     <hc.checkstyle.version>3.0.0</hc.checkstyle.version>
-    <hc.animal-sniffer.version>1.17</hc.animal-sniffer.version>
     <hc.animal-sniffer.signature.version>1.0</hc.animal-sniffer.signature.version>
     <hc.animal-sniffer.signature.ignores></hc.animal-sniffer.signature.ignores>
-    <hc.jacoco.version>0.8.5</hc.jacoco.version>
-    <hc.cobertura.version>2.7</hc.cobertura.version>
     <hc.coveralls.version>4.3.0</hc.coveralls.version>
     <hc.coveralls.timestampFormat>EpochMillis</hc.coveralls.timestampFormat>
 


[httpcomponents-parent] 10/11: Unify manifest config

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit d20cbd06dd296a2108206dd7bc481c0b1b267bd3
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Aug 29 23:22:52 2020 +0200

    Unify manifest config
---
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pom.xml b/pom.xml
index c8990b6..7408422 100644
--- a/pom.xml
+++ b/pom.xml
@@ -515,6 +515,9 @@ Fixed JIRA link
                 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
               </manifest>
+              <manifestEntries>
+                <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+              </manifestEntries>
             </archive>
           </configuration>
         </plugin>
@@ -571,6 +574,9 @@ Fixed JIRA link
                 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
               </manifest>
+              <manifestEntries>
+                <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+              </manifestEntries>
             </archive>
           </configuration>
         </plugin>


[httpcomponents-parent] 02/11: Upgrad Parent to 23

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 3d0230183d7ff43c0220f71d60b4688d2ca64a15
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Aug 29 22:36:19 2020 +0200

    Upgrad Parent to 23
    
    Massively remove everything already present in the parent POM.
---
 pom.xml | 88 +----------------------------------------------------------------
 1 file changed, 1 insertion(+), 87 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0189d2a..71b368b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@
   <parent>
     <groupId>org.apache</groupId>
     <artifactId>apache</artifactId>
-    <version>21</version>
+    <version>23</version>
   </parent>
   <groupId>org.apache.httpcomponents</groupId>
   <artifactId>httpcomponents-parent</artifactId>
@@ -198,11 +198,6 @@ Felix bundle plugin updated: 2.3.5 -> 2.3.7 (fixes Java 1.5 issue)
 Fixed JIRA link
  -->
 
-  <organization>
-    <name>Apache Software Foundation</name>
-    <url>https://www.apache.org/</url>
-  </organization>
-
   <issueManagement>
     <system>Jira</system>
     <!-- The following URL is for the HttpComponents group -->
@@ -468,18 +463,6 @@ Fixed JIRA link
     </site>
   </distributionManagement>
 
-  <repositories>
-    <!-- allow snapshot dependencies to be resolved -->
-    <repository>
-      <id>apache.snapshots</id>
-      <name>Apache Snapshot Repository</name>
-      <url>https://repository.apache.org/snapshots</url>
-      <releases>
-        <enabled>false</enabled>
-      </releases>
-    </repository>
-  </repositories>
-
   <build>
     <plugins>
       <plugin>
@@ -502,12 +485,6 @@ Fixed JIRA link
         <configuration>
           <archive>
             <manifestEntries>
-              <Specification-Title>Apache ${project.name}</Specification-Title>
-              <Specification-Version>${project.version}</Specification-Version>
-              <Specification-Vendor>Apache Software Foundation</Specification-Vendor>
-              <Implementation-Title>Apache HttpComponents ${project.name}</Implementation-Title>
-              <Implementation-Version>${project.version}</Implementation-Version>
-              <Implementation-Vendor>Apache Software Foundation</Implementation-Vendor>
               <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
               <!-- from buildnumber plugin and properties -->
               <Implementation-Build>${implementation.build}</Implementation-Build>
@@ -524,23 +501,7 @@ Fixed JIRA link
         <!-- org.apache.maven.plugins, alpha order by artifact id -->
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-assembly-plugin</artifactId>
-          <version>3.1.0</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-antrun-plugin</artifactId>
-          <version>1.8</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-clean-plugin</artifactId>
-          <version>3.1.0</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
-          <version>3.8.0</version>
           <configuration>
             <source>${maven.compiler.source}</source>
             <target>${maven.compiler.target}</target>
@@ -548,35 +509,6 @@ Fixed JIRA link
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-deploy-plugin</artifactId>
-          <version>2.8.2</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-gpg-plugin</artifactId>
-          <version>1.6</version>
-          <executions>
-            <execution>
-              <id>sign-artifacts</id>
-              <phase>verify</phase>
-              <goals>
-                <goal>sign</goal>
-              </goals>
-            </execution>
-          </executions>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-install-plugin</artifactId>
-          <version>2.5.2</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-jar-plugin</artifactId>
-          <version>3.1.0</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-javadoc-plugin</artifactId>
           <version>${hc.javadoc.version}</version>
           <configuration>
@@ -602,13 +534,7 @@ Fixed JIRA link
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-release-plugin</artifactId>
-          <version>2.5.3</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-resources-plugin</artifactId>
-          <version>3.1.0</version>
           <executions>
             <execution>
               <id>copy-resources</id>
@@ -639,19 +565,10 @@ Fixed JIRA link
               <version>3.2.0</version>
             </dependency>
           </dependencies>
-          <executions>
-            <execution>
-              <id>attach-descriptor</id>
-              <goals>
-                <goal>attach-descriptor</goal>
-              </goals>
-            </execution>
-          </executions>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-source-plugin</artifactId>
-          <version>3.0.1</version>
           <configuration>
             <archive>
               <manifest>
@@ -825,7 +742,6 @@ Fixed JIRA link
 
       <build>
         <plugins>
-
           <!-- Run the Animal Sniffer checks -->
           <plugin>
             <groupId>org.codehaus.mojo</groupId>
@@ -849,7 +765,6 @@ Fixed JIRA link
               <ignores>${hc.animal-sniffer.signature.ignores}</ignores>
             </configuration>
           </plugin>
-
         </plugins>
       </build>
     </profile>
@@ -1030,7 +945,6 @@ Fixed JIRA link
     <hc.surefire.version>2.22.1</hc.surefire.version>
     <hc.project-info.version>3.0.0</hc.project-info.version>
     <hc.checkstyle.version>2.17</hc.checkstyle.version>
-    <hc.rat.version>0.12</hc.rat.version>
     <hc.animal-sniffer.version>1.16</hc.animal-sniffer.version>
     <hc.animal-sniffer.signature.version>1.0</hc.animal-sniffer.signature.version>
     <hc.animal-sniffer.signature.ignores></hc.animal-sniffer.signature.ignores>