From d6d594df22d110fcd3c87fb59f8735868f2ebe1d Mon Sep 17 00:00:00 2001 From: Natan Date: Sat, 8 Jul 2023 11:11:05 -0300 Subject: [PATCH] fix an issue with ssl certificate when downloading jar files from teavm --- build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 87459de3..651261a6 100644 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,10 @@ subprojects { maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } maven { url "https://oss.sonatype.org/content/repositories/releases/" } maven { url "https://oss.sonatype.org/content/repositories/releases/" } - maven { url "https://teavm.org/maven/repository/" } + maven { + url "http://teavm.org/maven/repository/" + allowInsecureProtocol = true + } maven { url 'https://jitpack.io' } }