Skip to content

Commit b496247

Browse files
authored
[build] Use HTTPS instead of HTTP to resolve dependencies (#192)
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]>
1 parent 75b3732 commit b496247

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
<enabled>true</enabled>
2727
</snapshots>
2828
<id>jruby</id>
29-
<url>http://ci.jruby.org/snapshots/maven</url>
29+
<url>https://ci.jruby.org/snapshots/maven</url>
3030
</repository>
3131
</repositories>
3232
<pluginRepositories>
3333
<pluginRepository>
3434
<id>rubygems-releases</id>
35-
<url>http://rubygems-proxy.torquebox.org/releases</url>
35+
<url>https://rubygems-proxy.torquebox.org/releases</url>
3636
</pluginRepository>
3737
</pluginRepositories>
3838
<build>

0 commit comments

Comments
 (0)