fix in repositories

This commit is contained in:
2025-06-14 23:21:00 +06:00
parent f053013360
commit 73f05bbcd7
2 changed files with 2 additions and 2 deletions

@ -1,7 +1,6 @@
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()
google()
} }
dependencies { dependencies {

@ -14,8 +14,8 @@ allprojects {
nativePartTemplate = "${rootProject.projectDir.absolutePath}/native_template.gradle" nativePartTemplate = "${rootProject.projectDir.absolutePath}/native_template.gradle"
} }
repositories { repositories {
mavenLocal()
mavenCentral() mavenCentral()
google()
if (project.hasProperty("GITHUB_USER") && project.hasProperty("GITHUB_TOKEN")) { if (project.hasProperty("GITHUB_USER") && project.hasProperty("GITHUB_TOKEN")) {
maven { maven {
url "https://maven.pkg.github.com/InsanusMokrassar/TelegramBotAPI" url "https://maven.pkg.github.com/InsanusMokrassar/TelegramBotAPI"
@ -27,6 +27,7 @@ allprojects {
} }
maven { url "https://proxy.nexus.inmo.dev/repository/maven-releases/" } maven { url "https://proxy.nexus.inmo.dev/repository/maven-releases/" }
mavenLocal()
} }
} }