Skip to content

Commit

Permalink
Update to HTTPS urls in BintrayRepositoriesExtension (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
dreis2211 authored Apr 6, 2020
1 parent 28867cb commit 857742d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle/Bintray.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class BintrayRepositoriesExtension {
MavenArtifactRepository jcenter() {
return repositories.maven { MavenArtifactRepository repository ->
repository.name = 'BintrayJCenter'
repository.url = 'http://jcenter.bintray.com'
repository.url = 'https://jcenter.bintray.com'
}
}

Expand Down Expand Up @@ -90,7 +90,7 @@ class BintrayRepositoriesExtension {
}

String determineRepositoryUrl(String repoOwner, String repoName) {
return "http://dl.bintray.com/content/${repoOwner}/${repoName}"
return "https://dl.bintray.com/content/${repoOwner}/${repoName}"
}

String separatorsToCaps(String string) {
Expand Down

0 comments on commit 857742d

Please sign in to comment.