Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ class PublishingConventionPlugin : Plugin<Project> {
)

publishToMavenCentral()
signAllPublications()
if (project.hasProperty("signing.keyId") && project.property("signing.keyId").toString().isNotEmpty()) {
signAllPublications()
}

pom {
name.set(project.name)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ val projectArtifactId by extra { project: Project ->
allprojects {
group = "com.google.maps.android"
// {x-release-please-start-version}
version = "8.3.1"
version = "8.3.1-rc03"

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't need this here, right?

// {x-release-please-end}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ materialIconsExtendedAndroid = "1.7.8"

# Google Maps Platform
mapsecrets = "2.0.1"
mapsktx = "6.0.1"
mapsktx = "6.1.0-rc03"

# Testing
androidCore = "1.7.0"
Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
google()
mavenCentral()
}
Expand Down
Loading