mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
bf1657facb
Bumps `jacoco_version` from 0.8.7 to 0.8.8. Updates `org.jacoco.core` from 0.8.7 to 0.8.8 - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) Updates `org.jacoco.report` from 0.8.7 to 0.8.8 - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) Updates `org.jacoco.agent` from 0.8.7 to 0.8.8 - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) --- updated-dependencies: - dependency-name: org.jacoco:org.jacoco.core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.jacoco:org.jacoco.report dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.jacoco:org.jacoco.agent dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
44 lines
1 KiB
Groovy
44 lines
1 KiB
Groovy
buildscript {
|
|
ext {
|
|
jacoco_version = '0.8.8'
|
|
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
|
|
}
|