Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion registry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]",
]

Copy link
Copy Markdown

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 backends array lists asdf:mise-plugins/mise-grails first and github:apache/grails-core second. 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.

Fix in Cursor Fix in Web

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Missing test command mentioned in PR description

The PR description explicitly states "Add test command" as one of the changes being made, but no test field was added to the [tools.grails] entry. Neighboring tools like [tools.gradle] and [tools.grain] have test fields defined. This appears to be an incomplete implementation of the intended changes.

Fix in Cursor Fix in Web

description = "A powerful Groovy-based web application framework for the JVM built on top of Spring Boot"

[tools.grain]
Expand Down
Loading