2021-05-26 22:18:08 +03:00
|
|
|
allprojects {
|
2019-10-08 01:27:32 +03:00
|
|
|
repositories {
|
2021-05-26 22:18:08 +03:00
|
|
|
google()
|
2021-07-13 20:48:25 +03:00
|
|
|
mavenCentral()
|
2021-05-26 22:18:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
2022-12-19 22:35:29 +03:00
|
|
|
ext {
|
|
|
|
kotlin_version = '1.4.32' // 1.5 deprecated Java6
|
|
|
|
coroutines_version = '1.4.3' // 1.6.0 deprecated Java6
|
|
|
|
dokka_version = '1.6.10'
|
|
|
|
}
|
|
|
|
|
2021-05-26 22:18:08 +03:00
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
2019-10-08 01:27:32 +03:00
|
|
|
google()
|
|
|
|
}
|
2016-06-01 19:26:46 +03:00
|
|
|
|
2021-03-19 04:32:10 +03:00
|
|
|
dependencies {
|
2022-12-19 22:35:29 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:4.2.2'
|
2022-03-22 00:49:52 +03:00
|
|
|
classpath 'org.jacoco:org.jacoco.core:0.8.5'
|
2021-05-26 22:18:08 +03:00
|
|
|
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.20.0'
|
|
|
|
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0'
|
2022-12-19 22:35:29 +03:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
|
2019-10-08 01:27:32 +03:00
|
|
|
}
|
2016-06-01 19:26:46 +03:00
|
|
|
}
|
|
|
|
|
2021-07-13 20:48:25 +03:00
|
|
|
apply from: 'nexusPublishing.gradle'
|