Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

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 <[email protected]>
  • Loading branch information
JLLeitschuh committed Feb 11, 2020
1 parent 803e73d commit 4fe19ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@
<repositories>
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
<url>https://clojars.org/repo</url>
</repository>
<repository>
<id>bintray-readytalk</id>
<url>http://dl.bintray.com/readytalk/maven</url>
<url>https://dl.bintray.com/readytalk/maven</url>
</repository>
<repository>
<id>ossrh</id>
Expand Down

0 comments on commit 4fe19ec

Please sign in to comment.