Skip to content

Commit 234478a

Browse files
committed
Use HTTPS instead of HTTP to resolve dependencies
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 2560556 commit 234478a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,15 +238,15 @@
238238
</snapshots>
239239
<id>bintray-release</id>
240240
<name>libs-release</name>
241-
<url>http://oss.jfrog.org/artifactory/libs-release</url>
241+
<url>https://oss.jfrog.org/artifactory/libs-release</url>
242242
</repository>
243243
<repository>
244244
<snapshots>
245245
<enabled>true</enabled>
246246
</snapshots>
247247
<id>bintray-snapshot</id>
248248
<name>libs-snapshot</name>
249-
<url>http://oss.jfrog.org/artifactory/libs-snapshot</url>
249+
<url>https://oss.jfrog.org/artifactory/libs-snapshot</url>
250250
</repository>
251251
</repositories>
252252

0 commit comments

Comments
 (0)