mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2024-11-04 15:33:52 +00:00
29 lines
811 B
Groovy
29 lines
811 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")
|
|
}
|
|
}
|
|
}
|
|
|
|
maven { url "https://git.inmo.dev/api/packages/InsanusMokrassar/maven" }
|
|
}
|
|
}
|