Skip to content

Commit f4d6d47

Browse files
Use HTTPS in repo urls
maven has stopped supporting HTTP since Jan 15 2020. See https://stackoverflow.com/a/59764670/8175739 for more info
1 parent d2edc17 commit f4d6d47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ subprojects {
1818

1919
repositories {
2020
mavenCentral()
21-
maven { url "http://packages.confluent.io/maven/" }
22-
maven { url "http://repo.maven.apache.org/maven2" }
21+
maven { url "https://packages.confluent.io/maven/" }
22+
maven { url "https://repo.maven.apache.org/maven2" }
2323
jcenter()
24-
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local/' }
24+
maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local/' }
2525
}
2626
}
2727

0 commit comments

Comments
 (0)