nextcloud-android/build.gradle
dependabot[bot] 95f1e1066f
Bump mockkVersion from 1.12.3 to 1.12.4
Bumps `mockkVersion` from 1.12.3 to 1.12.4.

Updates `mockk` from 1.12.3 to 1.12.4
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/1.12.3...1.12.4)

Updates `mockk-android` from 1.12.3 to 1.12.4
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/1.12.3...1.12.4)

---
updated-dependencies:
- dependency-name: io.mockk:mockk
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.mockk:mockk-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-12 01:07:11 +00:00

43 lines
1 KiB
Groovy

buildscript {
ext {
jacoco_version = '0.8.8'
kotlin_version = '1.6.21'
androidxTestVersion = "1.4.0"
daggerVersion = "2.42"
markwonVersion = "4.6.2"
prismVersion = "2.0.0"
androidLibraryVersion = "master-SNAPSHOT"
mockitoVersion = "4.5.1"
mockitoKotlinVersion = "4.0.0"
mockkVersion = "1.12.4"
powermockVersion = "2.0.9"
byteBuddyVersion = "1.12.10"
espressoVersion = "3.4.0"
workRuntime = "2.7.1"
fidoVersion = "4.1.0"
checkerVersion = "3.21.2"
exoplayerVersion = "2.17.1"
documentScannerVersion = "1.0.1"
ciBuild = System.getenv("CI") == "true"
}
}
subprojects {
buildscript {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}