We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc23d92 commit 8c40fe5Copy full SHA for 8c40fe5
plugins/src/main/java/com/google/firebase/gradle/plugins/PostReleasePlugin.kt
@@ -63,7 +63,12 @@ class PostReleasePlugin : Plugin<Project> {
63
* @see VersionBumpTask
64
*/
65
fun registerVersionBumpTask(project: Project) =
66
- project.tasks.register<VersionBumpTask>("versionBump")
+ project.tasks.register<VersionBumpTask>("versionBump") {
67
+ // TODO(b/285892320): Remove condition when bug fixed
68
+ bumpVersion.set(project.firebaseLibrary.artifactId.map {
69
+ it !== "protolite-well-known-types"
70
+ })
71
+ }
72
73
/**
74
* Registers the `moveUnreleasedChanges` task for the provided [Project].
0 commit comments