-
Notifications
You must be signed in to change notification settings - Fork 941
Fix missing version in identity dashboard UI dependency Update pom.xml #26345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Fix: Add missing version tag for org.wso2.stratos.identity.dashboard.ui dependency
The POM failed to build due to a missing dependency version.
Added <version>${project.version}</version> to ensure proper resolution
and maintain consistency with the parent project version.
|
|
WalkthroughA Maven dependency declaration for Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🔇 Additional comments (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
| <artifactId>org.wso2.stratos.identity.dashboard.ui</artifactId> | ||
| <version>${project.version}</version> | ||
| </dependency> | ||
| </dependencies> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we keep the indentation as previous?
Fix: Add missing version tag for org.wso2.stratos.identity.dashboard.ui dependency
The POM failed to build due to a missing dependency version. Added ${project.version} to ensure proper resolution and maintain consistency with the parent project version.
Summary
This PR fixes a build issue caused by a missing
<version>tag in theorg.wso2.stratos.identity.dashboard.uidependency declared in theorg.wso2.identity.ui.featuremodule.Issue
The POM file did not specify a version for the dependency, which results in:
Fix
Added: