TelegramBotAPI-examples/build.gradle

32 lines
913 B
Groovy
Raw Permalink Normal View History

2022-05-17 12:58:43 +00:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
}
}
allprojects {
2023-10-20 18:28:12 +00:00
ext {
nativePartTemplate = "${rootProject.projectDir.absolutePath}/native_template.gradle"
}
repositories {
mavenLocal()
mavenCentral()
2021-03-12 09:48:31 +00:00
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")
}
}
}
2022-11-18 17:10:24 +00:00
2024-01-08 07:21:41 +00:00
maven { url "https://nexus.inmo.dev/repository/maven-releases/" }
}
}