Skip to content

Commit

Permalink
Solved issue when publishing metadata task dependency not executed (#391
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ferranpons authored Oct 3, 2024
1 parent ee080ec commit cf4a477
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ android {
lint {
disable.add("ObsoleteLintCustomCheck")
}
publishing {
singleVariant("release") {
withJavadocJar()
withSourcesJar()
}
}
namespace = "com.adevinta.mappicker"
}

Expand Down
8 changes: 7 additions & 1 deletion leku/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
vectorDrawables.useSupportLibrary = true
}

flavorDimensions("tier")
flavorDimensions.add("tier")

buildTypes {
getByName("release") {
Expand All @@ -47,6 +47,12 @@ android {
lint {
disable.add("ObsoleteLintCustomCheck")
}
publishing {
singleVariant("release") {
withJavadocJar()
withSourcesJar()
}
}
namespace = "com.adevinta.leku"
}

Expand Down
3 changes: 0 additions & 3 deletions scripts/publish-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ afterEvaluate {
artifact("$buildDir/libs/${project.getName()}-${version}.jar")
}

artifact androidSourcesJar
artifact javadocJar

pom {
name = project.project.getName()
description = 'Map location picker component for Android. Based on Google Maps. An alternative to Google Place Picker.'
Expand Down

0 comments on commit cf4a477

Please # to comment.