Fix spring-boot-starter parent version to 1.0.1-SNAPSHOT#33
Merged
Conversation
The parent POM was bumped to 1.0.1-SNAPSHOT and the client module updated, but the spring-boot-starter still referenced 1.0.0-SNAPSHOT, so Maven could not resolve the parent and the reactor build (and CI) failed. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
gmtuca
approved these changes
Jul 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
CI has been red on
main(and therefore every open PR) since the parent POM version was bumped1.0.0-SNAPSHOT → 1.0.1-SNAPSHOT. The rootgradient-labs-parentand thegradient-labs-clientmodule were updated, butgradient-labs-spring-boot-starterstill referenced the old1.0.0-SNAPSHOTparent. Maven can't resolveai.gradientlabs:gradient-labs-parent:pom:1.0.0-SNAPSHOT, so the reactor fails before compiling anything:Fix
One line: align the starter's parent
<version>with the root/client (1.0.1-SNAPSHOT).Unblocks CI on
mainand all in-flight PRs.🤖 Generated with Claude Code