Skip to content

Commit 3b61eac

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 b3884ff commit 3b61eac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,15 +245,15 @@
245245
</snapshots>
246246
<id>bintray</id>
247247
<name>bintray</name>
248-
<url>http://jcenter.bintray.com</url>
248+
<url>https://jcenter.bintray.com</url>
249249
</repository>
250250
<repository>
251251
<snapshots>
252252
<enabled>false</enabled>
253253
</snapshots>
254254
<id>central</id>
255255
<name>central</name>
256-
<url>http://repo1.maven.org</url>
256+
<url>https://repo1.maven.org</url>
257257
</repository>
258258
</repositories>
259259

@@ -272,7 +272,7 @@
272272
</snapshots>
273273
<id>central</id>
274274
<name>bintray-plugins</name>
275-
<url>http://jcenter.bintray.com</url>
275+
<url>https://jcenter.bintray.com</url>
276276
</pluginRepository>
277277
</pluginRepositories>
278278

0 commit comments

Comments
 (0)