You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by hu...@apache.org on 2020/01/24 19:14:50 UTC

[helix] branch master updated: Force Maven to use HTTPS in top level pom.xml

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

hulee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git


The following commit(s) were added to refs/heads/master by this push:
     new d294499  Force Maven to use HTTPS in top level pom.xml
d294499 is described below

commit d2944991c5d6da69dff03de38e551d00659c9519
Author: Hunter Lee <hu...@linkedin.com>
AuthorDate: Fri Jan 24 11:14:42 2020 -0800

    Force Maven to use HTTPS in top level pom.xml
    
    See https://blog.sonatype.com/central-repository-moving-to-https
---
 pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/pom.xml b/pom.xml
index 6c78f06..29308c1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -312,6 +312,15 @@ under the License.
         <enabled>false</enabled>
       </snapshots>
     </repository>
+    <repository>
+      <id>central</id>
+      <name>Central Repository</name>
+      <url>https://repo.maven.apache.org/maven2</url>
+      <layout>default</layout>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
   </repositories>
 
 
@@ -326,6 +335,18 @@ under the License.
         <enabled>true</enabled>
       </snapshots>
     </pluginRepository>
+    <pluginRepository>
+      <id>central</id>
+      <name>Central Repository</name>
+      <url>https://repo.maven.apache.org/maven2</url>
+      <layout>default</layout>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <releases>
+        <updatePolicy>never</updatePolicy>
+      </releases>
+    </pluginRepository>
   </pluginRepositories>
 
   <scm>