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/08/30 20:03:58 UTC

[httpcomponents-parent] branch 12-dev updated (f5f9d6f -> 23ec92c)

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

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


 discard f5f9d6f  Unify manifest config
 discard 451ece4  Remove only once used properties
 discard 9dbf22b  Remove manifest entries w/o benefits or non-reproducible
 discard d231f9b  Update SCM URLs
 discard 8d496af  Fix report names for MPIR
 discard a0598ec  Update Plugins
 discard 2503241  Remove no-op parameter
 discard 8c7d014  Use unique Surefire version throughout
 discard d4d1d15  Upgrad Parent to 23
     new b6e6e35  Upgrad Parent to 23
     new 880136c  Use unique Surefire version throughout
     new a4a6fa8  Remove no-op parameter
     new 1168f9e  Update Plugins
     new 85b8283  Fix report names for MPIR
     new 02e0221  Update SCM URLs
     new e4e1caf  Remove manifest entries w/o benefits or non-reproducible
     new 9d6da98  Remove only once used properties
     new 23ec92c  Unify manifest config

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f5f9d6f)
            \
             N -- N -- N   refs/heads/12-dev (23ec92c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 9 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 | 5 -----
 1 file changed, 5 deletions(-)


[httpcomponents-parent] 07/09: 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 12-dev
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git

commit e4e1cafad8146ea3b18353787aaa13f7bf502f2e
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 47f4eac..c380005 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] 02/09: 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 12-dev
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git

commit 880136c32276e6dff738b84795330abe109e33b5
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 123a7b6..5c67401 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] 05/09: 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 12-dev
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git

commit 85b8283995c966a0b363493fab422f09412db56d
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 bc858c3..dafad1f 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] 06/09: 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 12-dev
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git

commit 02e0221d6427fc36289ec5e4457bc6e9f04e046b
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 dafad1f..47f4eac 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] 01/09: 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 12-dev
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git

commit b6e6e35a1bc6a07e80e2aa7520a211025ce7a9a0
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 97389f9..123a7b6 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>


[httpcomponents-parent] 09/09: 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 12-dev
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git

commit 23ec92cca9fd5f5fff14f046ed53b4ee2c17bfcf
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 882e607..441f856 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] 04/09: 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 12-dev
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git

commit 1168f9ee977c23780f46a5e7d24a74c6ea5be67c
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 fecf4b2..bc858c3 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] 08/09: 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 12-dev
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git

commit 9d6da98237e053c674df1b3be0fe9f0e42e60722
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 c380005..882e607 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] 03/09: 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 12-dev
in repository https://gitbox.apache.org/repos/asf/httpcomponents-parent.git

commit a4a6fa82ffc45d78dc5a3d6d00d40b9ef3e22552
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 5c67401..fecf4b2 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>