Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Flisar authored and Michael Flisar committed Oct 24, 2024
1 parent 04fb969 commit 143bfc4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ plugins {
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.parcelize) apply false
alias(libs.plugins.compose) apply false
alias(libs.plugins.dokka) apply false
}
11 changes: 9 additions & 2 deletions library/modules/billing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.compose)
alias(libs.plugins.kotlin.parcelize)
//alias(libs.plugins.dokka)
alias(libs.plugins.dokka)
alias(libs.plugins.gradle.maven.publish.plugin)
}

Expand All @@ -31,6 +31,13 @@ val licenseUrl = "$github/blob/main/LICENSE"
// Setup
// -------------------

// this task fails in github action - so we disable it...
/*tasks.matching { task ->
task.name.contains("javaDocReleaseGeneration", ignoreCase = true)
}.configureEach {
enabled = false
}*/

android {

namespace = androidNamespace
Expand Down Expand Up @@ -98,7 +105,7 @@ dependencies {

mavenPublishing {

configure(AndroidSingleVariantLibrary("release", true, false))
configure(AndroidSingleVariantLibrary("release", true, true))

coordinates(
groupId = groupID,
Expand Down

0 comments on commit 143bfc4

Please sign in to comment.