You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/06/23 15:12:06 UTC

[maven-repository-plugin] branch FIX_TLS updated (5f9d11a -> 1ee9a66)

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

khmarbaise pushed a change to branch FIX_TLS
in repository https://gitbox.apache.org/repos/asf/maven-repository-plugin.git.


 discard 5f9d11a  Central only supports TLSv1.2
     new 1ee9a66  Central only supports TLSv1.2

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   (5f9d11a)
            \
             N -- N -- N   refs/heads/FIX_TLS (1ee9a66)

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 1 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 | 1 +
 1 file changed, 1 insertion(+)


[maven-repository-plugin] 01/01: Central only supports TLSv1.2

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

khmarbaise pushed a commit to branch FIX_TLS
in repository https://gitbox.apache.org/repos/asf/maven-repository-plugin.git

commit 1ee9a664fd357e267bb9b464d513c43416c5b19a
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Jun 23 17:09:22 2018 +0200

    Central only supports TLSv1.2
---
 pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/pom.xml b/pom.xml
index dc5963e..aed82e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,6 +40,7 @@ under the License.
     <maven>${mavenVersion}</maven>
   </prerequisites>
 
+
   <scm>
     <connection>scm:git:https://gitbox.apache.org/repos/asf/maven-repository-plugin.git</connection>
     <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-repository-plugin.git</developerConnection>
@@ -237,6 +238,10 @@ under the License.
                     <extraArtifact>junit:junit:4.11:jar</extraArtifact>
                     <extraArtifact>org.codehaus.plexus:plexus-utils:1.1</extraArtifact>
                   </extraArtifacts>
+                  <properties>
+                    <!-- e.g. ensure that Java7 picks up TLSv1.2 when connecting with Central -->
+                    <https.protocols>${https.protocols}</https.protocols>
+                  </properties>
                 </configuration>
               </execution>
             </executions>