build-logic: remove explicit Dokka dependency (#1873)
This commit is contained in:
parent
109de59118
commit
84755a3721
4 changed files with 1 additions and 6 deletions
|
@ -32,7 +32,6 @@ gradlePlugin {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(libs.build.agp)
|
implementation(libs.build.agp)
|
||||||
implementation(libs.build.dokka)
|
|
||||||
implementation(libs.build.mavenpublish)
|
implementation(libs.build.mavenpublish)
|
||||||
implementation(libs.build.semver)
|
implementation(libs.build.semver)
|
||||||
implementation(libs.build.sentry)
|
implementation(libs.build.sentry)
|
||||||
|
|
|
@ -11,10 +11,10 @@ import org.gradle.kotlin.dsl.provideDelegate
|
||||||
plugins {
|
plugins {
|
||||||
id("com.github.android-password-store.android-library")
|
id("com.github.android-password-store.android-library")
|
||||||
id("com.vanniktech.maven.publish.base")
|
id("com.vanniktech.maven.publish.base")
|
||||||
id("org.jetbrains.dokka")
|
|
||||||
id("signing")
|
id("signing")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Suppress("UnstableApiUsage")
|
||||||
configure<MavenPublishBaseExtension> {
|
configure<MavenPublishBaseExtension> {
|
||||||
group = requireNotNull(project.findProperty("GROUP"))
|
group = requireNotNull(project.findProperty("GROUP"))
|
||||||
version = requireNotNull(project.findProperty("VERSION_NAME"))
|
version = requireNotNull(project.findProperty("VERSION_NAME"))
|
||||||
|
|
|
@ -20,5 +20,4 @@ plugins {
|
||||||
id("com.github.android-password-store.git-hooks")
|
id("com.github.android-password-store.git-hooks")
|
||||||
id("com.github.android-password-store.spotless")
|
id("com.github.android-password-store.spotless")
|
||||||
alias(libs.plugins.hilt) apply false
|
alias(libs.plugins.hilt) apply false
|
||||||
alias(libs.plugins.dokka) apply false
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,6 @@ androidx_activity = "1.4.0"
|
||||||
androidx_test = "1.4.1-alpha05"
|
androidx_test = "1.4.1-alpha05"
|
||||||
compose = "1.2.0-alpha08"
|
compose = "1.2.0-alpha08"
|
||||||
coroutines = "1.6.1"
|
coroutines = "1.6.1"
|
||||||
dokka = "1.6.21"
|
|
||||||
flowbinding = "1.2.0"
|
flowbinding = "1.2.0"
|
||||||
hilt = "2.41"
|
hilt = "2.41"
|
||||||
kotlin = "1.6.21"
|
kotlin = "1.6.21"
|
||||||
|
@ -12,7 +11,6 @@ leakcanary = "2.9.1"
|
||||||
lifecycle = "2.4.1"
|
lifecycle = "2.4.1"
|
||||||
|
|
||||||
[plugins]
|
[plugins]
|
||||||
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
|
|
||||||
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
|
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
|
||||||
|
|
||||||
[libraries]
|
[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-agp = "com.android.tools.build:gradle:7.1.3"
|
||||||
build-binarycompat = "org.jetbrains.kotlinx:binary-compatibility-validator:0.9.0"
|
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-download = "de.undercouch:gradle-download-task:5.0.5"
|
||||||
build-kotlin = "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
|
build-kotlin = "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
|
||||||
build-mavenpublish = "com.vanniktech:gradle-maven-publish-plugin:0.19.0"
|
build-mavenpublish = "com.vanniktech:gradle-maven-publish-plugin:0.19.0"
|
||||||
|
|
Loading…
Reference in a new issue