Merge pull request #2668 from gouri-panda/fix/#2667_ci_issue

#2667_ci_issue
This commit is contained in:
Kelson 2021-07-12 09:23:34 +02:00 committed by GitHub
commit 09c5c9b2eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
@ -19,8 +20,8 @@ plugins {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
jcenter()
}
}

View File

@ -33,7 +33,7 @@ object Versions {
const val io_objectbox: String = "2.8.1"
const val org_jacoco: String = "0.7.9"
const val org_jacoco: String = "0.8.7"
const val io_mockk: String = "1.10.2"

View File

@ -141,7 +141,7 @@ class AllProjectConfigurer {
fun configurePlugins(target: Project) {
target.run {
configureExtension<AndroidExtensionsExtension> { isExperimental = true }
configureExtension<JacocoPluginExtension> { toolVersion = "0.8.3" }
configureExtension<JacocoPluginExtension> { toolVersion = "0.8.7" }
configureExtension<KtlintExtension> { android.set(true) }
configureExtension<DetektExtension> {
baseline = project.file("detekt_baseline.xml")

View File

@ -19,7 +19,7 @@
apply plugin: 'jacoco'
jacoco {
toolVersion = "0.8.3"
toolVersion = "0.8.7"
}
tasks.withType(Test) {