nextcloud-android/build.gradle
dependabot[bot] 84d7aa5406
Bump kotlin_version from 1.6.10 to 1.6.20
Bumps `kotlin_version` from 1.6.10 to 1.6.20.

Updates `kotlin-gradle-plugin` from 1.6.10 to 1.6.20
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/commits)

Updates `kotlin-stdlib` from 1.6.10 to 1.6.20
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/commits)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin:kotlin-stdlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-04 01:26:08 +00:00

44 lines
1 KiB
Groovy

buildscript {
ext {
jacoco_version = '0.8.7'
kotlin_version = '1.6.20'
androidxTestVersion = "1.4.0"
daggerVersion = "2.41"
markwonVersion = "4.6.2"
prismVersion = "2.0.0"
androidLibraryVersion = "master-SNAPSHOT"
mockitoVersion = "4.4.0"
mockitoKotlinVersion = "4.0.0"
mockkVersion = "1.12.3"
powermockVersion = "2.0.9"
byteBuddyVersion = "1.12.8"
espressoVersion = "3.4.0"
workRuntime = "2.7.1"
fidoVersion = "4.1.0"
checkerVersion = "3.21.2"
exoplayerVersion = "2.17.1"
ciBuild = System.getenv("CI") == "true"
}
}
subprojects {
buildscript {
repositories {
google()
maven {
url 'https://plugins.gradle.org/m2/'
}
mavenCentral()
}
}
repositories {
google()
maven { url "https://jitpack.io" }
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}