This commit is contained in:
2021-03-12 15:48:31 +06:00
parent aa89a289ce
commit 9e0f43dcc0
7 changed files with 19 additions and 15 deletions

View File

@@ -2,5 +2,14 @@ allprojects {
repositories {
mavenLocal()
jcenter()
if (project.hasProperty("GITHUB_USER") && project.hasProperty("GITHUB_TOKEN")) {
maven {
url "https://maven.pkg.github.com/InsanusMokrassar/TelegramBotAPI"
credentials {
username = project.getProperty("GITHUB_USER")
password = project.getProperty("GITHUB_TOKEN")
}
}
}
}
}