From 9fa25992016cc52b6947870d5874ccbf8eea2530 Mon Sep 17 00:00:00 2001 From: Akond Rahman Date: Tue, 7 Jul 2020 21:52:54 -0500 Subject: [PATCH] Update to fix HTTP endpoints Some of the endpoints are still using HTTP that is insecure ... replaced with secure HTTP (HTTP with SSL/TLS) that exists Details: I found instances where the HTTP protocol is used instead of HTTPS (HTTP with TLS). According to the Common Weakness Enumeration organization this is a security weakness (https://cwe.mitre.org/data/definitions/319.html). --- livelessons-parent/pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/livelessons-parent/pom.xml b/livelessons-parent/pom.xml index 5e4cb4f..fe6bb52 100644 --- a/livelessons-parent/pom.xml +++ b/livelessons-parent/pom.xml @@ -1,6 +1,6 @@ - + 4.0.0 livelessons livelessons-parent @@ -61,7 +61,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -69,7 +69,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false @@ -77,7 +77,7 @@ spring-releases Spring Releases - http://repo.spring.io/libs-release-local + https://repo.spring.io/libs-release-local false