2020-09-15 12:57:41 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2020-11-10 08:32:50 +00:00
|
|
|
google()
|
2020-09-15 12:57:41 +00:00
|
|
|
mavenCentral()
|
2020-11-10 08:32:50 +00:00
|
|
|
mavenLocal()
|
2020-10-02 18:12:06 +00:00
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
2020-09-15 12:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-05-06 11:52:53 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:4.1.3'
|
2020-09-15 12:57:41 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
2020-11-10 08:32:50 +00:00
|
|
|
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:$dexcount_version"
|
2020-10-02 14:45:16 +00:00
|
|
|
classpath "com.github.breadmoirai:github-release:$github_release_plugin_version"
|
2020-11-10 11:09:14 +00:00
|
|
|
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
|
2020-09-15 12:57:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-16 11:59:51 +00:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2020-10-16 13:39:18 +00:00
|
|
|
mavenLocal()
|
2020-10-16 11:59:51 +00:00
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
2020-11-10 08:32:50 +00:00
|
|
|
google()
|
2020-10-16 11:59:51 +00:00
|
|
|
maven { url "https://kotlin.bintray.com/kotlinx" }
|
|
|
|
}
|
2021-04-18 11:29:02 +00:00
|
|
|
|
|
|
|
// temporal crutch until legacy tests will be stabled or legacy target will be removed
|
|
|
|
if (it != rootProject.findProject("docs")) {
|
|
|
|
tasks.whenTaskAdded { task ->
|
|
|
|
if(task.name == "jsLegacyBrowserTest" || task.name == "jsLegacyNodeTest") {
|
|
|
|
task.enabled = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-15 12:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "./extensions.gradle"
|
2020-10-02 19:00:44 +00:00
|
|
|
apply from: "./github_release.gradle"
|