Skip to content

Commit

Permalink
Use HTTPS instead of HTTP to resolve dependencies
Browse files Browse the repository at this point in the history
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.Leitschuh@gmail.com>
  • Loading branch information
JLLeitschuh committed Feb 11, 2020
1 parent 691fa9f commit 227ca98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/audit-release/blank_maven_build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<repositories>
<repository>
<id>Spray.cc repository</id>
<url>http://repo.spray.cc</url>
<url>https://repo.spray.cc</url>
</repository>
<repository>
<id>Spark Staging Repo</id>
Expand Down
2 changes: 1 addition & 1 deletion dev/audit-release/maven_app_core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<repositories>
<repository>
<id>Spray.cc repository</id>
<url>http://repo.spray.cc</url>
<url>https://repo.spray.cc</url>
</repository>
<repository>
<id>Spark Staging Repo</id>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
<repository>
<id>mapr-repo</id>
<name>MapR Repository</name>
<url>http://repository.mapr.com/maven</url>
<url>https://repository.mapr.com/maven</url>
<releases>
<enabled>true</enabled>
</releases>
Expand Down

0 comments on commit 227ca98

Please sign in to comment.