Добавлена проверка на http

This commit is contained in:
2025-06-10 15:25:38 +03:00
parent 197efd0354
commit 5124bac61b
3 changed files with 14 additions and 3 deletions

View File

@ -1,7 +1,12 @@
pluginManagement{
repositories {
mavenLocal()
maven {url getProperty("biz.redsoft.public.repo") }
maven {
def repo = getProperty("biz.redsoft.public.repo")
url repo
if (repo.contains("http:/"))
allowInsecureProtocol = true
}
}
}