-
Notifications
You must be signed in to change notification settings - Fork 4
DCL improvements #45
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: main
Are you sure you want to change the base?
DCL improvements #45
Conversation
h0tk3y
commented
Sep 18, 2025
- Display error messages from DCL analysis in popups over code
- Display the plugins contributing features and projec types
- Add grouping to the model actions in the left pane
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.
Good stuff!
My comments are mostly on the Gradle version in use and the Wrapper validation failing.
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-9.2.0-branch-sigushkinDeclarativeComposability-20250818215312+0000-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-9.2.0-20250903110058+0000-bin.zip |
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.
❓ I guess we could use 9.2.0-milestone-2
here
gradle-client/build.gradle.dcl
Outdated
implementation("org.gradle:gradle-declarative-dsl-tooling-models:9.0-milestone-1") | ||
implementation("org.gradle:gradle-declarative-dsl-core:9.2.0-milestone-1") | ||
implementation("org.gradle:gradle-declarative-dsl-evaluator:9.2.0-milestone-1") | ||
implementation("org.gradle:gradle-declarative-dsl-tooling-models:9.2.0-milestone-1") |
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.
❓ I guess we could use 9.2.0-milestone-2
here
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.
❌ Wrapper JAR validation check failed. I don't know where this one is coming from but using the 9.2.0-milestone-2
should work fine.
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.
Unfortunately, 9.2.0-milestone-2
fails the check just as well.
GetKotlinBaseDslScriptModel(), | ||
GetResilientGradleBuild(), | ||
GetResilientKotlinDslScriptsModel(), | ||
val modelActionGroups = listOf( |
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.
👍 Good call adding some structure here