Skip to content

Commit

Permalink
fix: use HTTPS instead of HTTP to resolve dependencies in Maven arche…
Browse files Browse the repository at this point in the history
…type (#4511)

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 authored Feb 18, 2020
1 parent 011e7e6 commit f21823f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<repositories>
<repository>
<id>confluent</id>
<url>http://packages.confluent.io/maven/</url>
<url>https://packages.confluent.io/maven/</url>
</repository>
<repository>
<id>ossrh</id>
Expand Down

0 comments on commit f21823f

Please sign in to comment.