mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 05:35:39 +03:00
cfc34942b0
Bumps `mockitoVersion` from 4.6.0 to 4.6.1. Updates `mockito-core` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.6.0...v4.6.1) Updates `mockito-android` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.6.0...v4.6.1) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.mockito:mockito-android dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
1,002 B
Groovy
42 lines
1,002 B
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.6.1"
|
|
mockitoKotlinVersion = "4.0.0"
|
|
mockkVersion = "1.12.4"
|
|
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
|
|
}
|