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 4768ac56ca3c7d3724ef1316682781450c78b588 Author: Jonathan Leitschuh <[email protected]> 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 <[email protected]> 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>
