From 9b17a3d446411d42ebf30211e519e942dbf0b176 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Thu, 18 Dec 2025 19:40:05 -0600 Subject: [PATCH] registry: add github backend for grails (as secondary) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Grails has a split release history: - Versions < 7: grails/grails-core with grails-{version}.zip - Versions >= 7: apache/grails-core with apache-grails-{version}-bin.zip Keep asdf as primary to handle all versions. Add github as secondary option for users who want to explicitly use it for newer releases. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- registry.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/registry.toml b/registry.toml index 8476e53e28..ccd181efaf 100644 --- a/registry.toml +++ b/registry.toml @@ -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]", +] description = "A powerful Groovy-based web application framework for the JVM built on top of Spring Boot" [tools.grain]