-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
registry: add github backend for grails #7429
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1931,7 +1931,10 @@ backends = ["asdf:mise-plugins/mise-gradle-profiler"] | |
| description = "A tool for gathering profiling and benchmarking information for Gradle builds" | ||
|
|
||
| [tools.grails] | ||
| backends = ["asdf:mise-plugins/mise-grails"] | ||
| backends = [ | ||
| "asdf:mise-plugins/mise-grails", | ||
| "github:apache/grails-core[asset_pattern=apache-grails-{version}-bin.zip,bin_path=apache-grails-{version}-bin/bin]", | ||
| ] | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Missing test command mentioned in PR descriptionThe PR description explicitly states "Add test command" as one of the changes being made, but no |
||
| description = "A powerful Groovy-based web application framework for the JVM built on top of Spring Boot" | ||
|
|
||
| [tools.grain] | ||
|
|
||
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.
Bug: Backend ordering reversed from PR stated intention
The PR description states the github backend should be the "primary" and asdf should be kept as a "fallback", but the
backendsarray listsasdf:mise-plugins/mise-grailsfirst andgithub:apache/grails-coresecond. In this registry, the first backend is tried first (primary), so the current ordering makes asdf primary instead of github, which is the opposite of the stated intention.