You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/03/08 21:04:39 UTC

[maven-archetype] 01/01: Use HTTPS instead of HTTP to resolve dependencies

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

slachiewicz pushed a commit to branch use_https
in repository https://gitbox.apache.org/repos/asf/maven-archetype.git

commit 95bf65d0b86c6813a6767f54db9f131119662e97
Author: Jonathan Leitschuh <Jo...@gmail.com>
AuthorDate: Mon Feb 10 18:21:10 2020 -0500

    Use HTTPS instead of HTTP to resolve dependencies
    
    This fixes a security vulnerability in this project where the `pom.xml`
    files were configuring Maven to resolve dependencies over HTTP instead of
    HTTPS.
    
    Signed-off-by: Jonathan Leitschuh <Jo...@gmail.com>
    Closes #37
---
 maven-archetype-plugin/src/test/projects/simple-inheritence/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maven-archetype-plugin/src/test/projects/simple-inheritence/pom.xml b/maven-archetype-plugin/src/test/projects/simple-inheritence/pom.xml
index aa73c7c..953b94b 100644
--- a/maven-archetype-plugin/src/test/projects/simple-inheritence/pom.xml
+++ b/maven-archetype-plugin/src/test/projects/simple-inheritence/pom.xml
@@ -111,7 +111,7 @@
       </releases>
       <id>codehaus.snapshots</id>
       <name>Codehaus Snapshot Development Repository</name>
-      <url>http://snapshots.repository.codehaus.org</url>
+      <url>https://snapshots.repository.codehaus.org</url>
     </repository>
   </repositories>