mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2024-11-04 15:33:52 +00:00
15 lines
476 B
Groovy
15 lines
476 B
Groovy
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")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |