2020-11-08 13:04:44 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2020-11-12 05:58:08 +00:00
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
2020-11-08 13:04:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
2020-11-12 05:58:08 +00:00
|
|
|
classpath "com.github.breadmoirai:github-release:$github_release_plugin_version"
|
2020-11-08 13:04:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-12 05:52:09 +00:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2021-02-16 19:21:41 +00:00
|
|
|
jcenter()
|
2020-11-12 05:52:09 +00:00
|
|
|
mavenLocal()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
2020-11-08 13:04:44 +00:00
|
|
|
}
|
2020-11-12 06:28:19 +00:00
|
|
|
|
|
|
|
apply from: "${rootProject.projectDir.path}${File.separator}github_release.gradle"
|