build-logic: remove explicit Dokka dependency (#1873)

This commit is contained in:
Harsh Shandilya 2022-04-26 13:17:30 +05:30 committed by GitHub
parent 109de59118
commit 84755a3721
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 6 deletions

View file

@ -32,7 +32,6 @@ gradlePlugin {
dependencies {
implementation(libs.build.agp)
implementation(libs.build.dokka)
implementation(libs.build.mavenpublish)
implementation(libs.build.semver)
implementation(libs.build.sentry)

View file

@ -11,10 +11,10 @@ import org.gradle.kotlin.dsl.provideDelegate
plugins {
id("com.github.android-password-store.android-library")
id("com.vanniktech.maven.publish.base")
id("org.jetbrains.dokka")
id("signing")
}
@Suppress("UnstableApiUsage")
configure<MavenPublishBaseExtension> {
group = requireNotNull(project.findProperty("GROUP"))
version = requireNotNull(project.findProperty("VERSION_NAME"))

View file

@ -20,5 +20,4 @@ plugins {
id("com.github.android-password-store.git-hooks")
id("com.github.android-password-store.spotless")
alias(libs.plugins.hilt) apply false
alias(libs.plugins.dokka) apply false
}

View file

@ -4,7 +4,6 @@ androidx_activity = "1.4.0"
androidx_test = "1.4.1-alpha05"
compose = "1.2.0-alpha08"
coroutines = "1.6.1"
dokka = "1.6.21"
flowbinding = "1.2.0"
hilt = "2.41"
kotlin = "1.6.21"
@ -12,7 +11,6 @@ leakcanary = "2.9.1"
lifecycle = "2.4.1"
[plugins]
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
[libraries]
@ -43,7 +41,6 @@ aps-zxingAndroidEmbedded = "com.github.android-password-store:zxing-android-embe
build-agp = "com.android.tools.build:gradle:7.1.3"
build-binarycompat = "org.jetbrains.kotlinx:binary-compatibility-validator:0.9.0"
build-dokka = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "dokka" }
build-download = "de.undercouch:gradle-download-task:5.0.5"
build-kotlin = "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
build-mavenpublish = "com.vanniktech:gradle-maven-publish-plugin:0.19.0"