summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAndrew Gaul <andrew@gaul.org>2024-09-23 12:57:07 -0700
committerAndrew Gaul <andrew@gaul.org>2024-09-23 21:54:41 -0700
commitdc7a5ca6d5717c17bf7313577a56dca97f782901 (patch)
tree41ea30324aad35e744680b42f7bcc7197074fff1 /build.gradle
parentc3e1ecd2aeba7a0ef3da4a78bd904831fca57225 (diff)
Specify repository as HTTPS instead of HTTP
This resolves an error: Using insecure protocols with repositories, without explicit opt-in, is unsupported. Also remove duplicate repository.
Diffstat (limited to 'build.gradle')
-rwxr-xr-xbuild.gradle3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index c0e93db9..bf070ee1 100755
--- a/build.gradle
+++ b/build.gradle
@@ -13,9 +13,8 @@ allprojects {
repositories {
google()
maven {url "https://clojars.org/repo/"}
- maven { url "http://jzaccone.github.io/SlidingMenu-aar" }
+ maven { url "https://jzaccone.github.io/SlidingMenu-aar" }
maven { url "https://jitpack.io" }
- maven {url "https://clojars.org/repo/"}
jcenter()
}
}