Skip to content

Commit

Permalink
chore: evaluate after release
Browse files Browse the repository at this point in the history
  • Loading branch information
kikoso committed Jun 11, 2024
1 parent 01ebab9 commit 702b800
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-logic/convention/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
repositories {
google()
mavenCentral()
gradlePluginPortal() // Optional, for other Gradle plugins
gradlePluginPortal()
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ class PublishingConventionPlugin : Plugin<Project> {
extensions.configure<PublishingExtension> {
publications {
create<MavenPublication>("aar") {
// from(components["release"])
afterEvaluate {
from(components["release"])
}
pom {
name.set(project.name)
description.set("Jetpack Compose components for the Maps SDK for Android")
Expand Down

0 comments on commit 702b800

Please sign in to comment.