mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2024-11-04 23:43:53 +00:00
27 lines
729 B
Groovy
27 lines
729 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
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")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|