From 3bafd59dfeacf0531b72cd1fe066c8240024f7fb Mon Sep 17 00:00:00 2001 From: anangkur Date: Tue, 21 Nov 2023 15:44:05 +0700 Subject: [PATCH 1/3] fix: update jacoco implementation and version --- build.gradle | 3 ++- compressor/build.gradle | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 1607685..444a0e0 100644 --- a/build.gradle +++ b/build.gradle @@ -15,11 +15,12 @@ buildscript { } } maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' } + maven { url 'https://plugins.gradle.org/m2/' } } dependencies { classpath 'com.android.tools.build:gradle:4.1.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - classpath 'com.dicedmelon.gradle:jacoco-android:0.1.5-SNAPSHOT' + classpath 'com.dicedmelon.gradle:jacoco-android:0.1.5' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1' classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.20.2-dev-64' classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.22.0' diff --git a/compressor/build.gradle b/compressor/build.gradle index 09200cd..3a3d5be 100644 --- a/compressor/build.gradle +++ b/compressor/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: 'com.github.dcendents.android-maven' -apply plugin: 'jacoco-android' +apply plugin: 'com.dicedmelon.gradle.jacoco-android' ext { PUBLISH_GROUP_ID = 'id.zelory' From e633ddfc1145fe5f4b1193e3003274367624cda8 Mon Sep 17 00:00:00 2001 From: anangkur Date: Tue, 21 Nov 2023 15:45:46 +0700 Subject: [PATCH 2/3] fix: remove com.github.dcendents.android-maven implementation in build.gradle --- compressor/build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/compressor/build.gradle b/compressor/build.gradle index 3a3d5be..89ae21c 100644 --- a/compressor/build.gradle +++ b/compressor/build.gradle @@ -1,6 +1,5 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' -apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.dicedmelon.gradle.jacoco-android' ext { From c4d1148630ecadd01469f4ca0b5ce81854dc4a77 Mon Sep 17 00:00:00 2001 From: anangkur Date: Tue, 21 Nov 2023 15:46:19 +0700 Subject: [PATCH 3/3] fix: update implementation of dokka and version in build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 444a0e0..ffbe65f 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ buildscript { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.dicedmelon.gradle:jacoco-android:0.1.5' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1' - classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.20.2-dev-64' + classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.9.10' classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.22.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files