This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
The following commit(s) were added to refs/heads/master by this push: new 7aa25f8 Use HTTPS instead of HTTP to resolve dependencies new 0785b27 Merge pull request #86 from JLLeitschuh/fix/JLL/use_https_to_resolve_dependencies 7aa25f8 is described below commit 7aa25f8925b2b96d6c351d9078100cacb3f85d5d Author: Jonathan Leitschuh <jonathan.leitsc...@gmail.com> AuthorDate: Mon Feb 10 18:21:07 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 <jonathan.leitsc...@gmail.com> --- parent/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parent/pom.xml b/parent/pom.xml index e195f70..9e6d793 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -82,7 +82,7 @@ <repository> <id>jboss-public-repository-group</id> <name>JBoss Public Maven Repository Group</name> - <url>http://repository.jboss.org/nexus/content/groups/public</url> + <url>https://repository.jboss.org/nexus/content/groups/public</url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> @@ -98,7 +98,7 @@ <pluginRepository> <id>jboss-public-repository-group</id> <name>JBoss Public Maven Repository Group</name> - <url>http://repository.jboss.org/nexus/content/groups/public</url> + <url>https://repository.jboss.org/nexus/content/groups/public</url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy>