This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 191b141bc6 minor refactor: Ivy should be test runtime (use current 
package)
191b141bc6 is described below

commit 191b141bc6989373c4110333dd78bd4c970a2973
Author: Paul King <[email protected]>
AuthorDate: Fri Mar 20 07:30:04 2026 +1000

    minor refactor: Ivy should be test runtime (use current package)
---
 .../src/main/groovy/groovy/console/ui/ConsoleIvyPlugin.groovy           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/subprojects/groovy-console/src/main/groovy/groovy/console/ui/ConsoleIvyPlugin.groovy
 
b/subprojects/groovy-console/src/main/groovy/groovy/console/ui/ConsoleIvyPlugin.groovy
index 286620bcad..a2580e6734 100644
--- 
a/subprojects/groovy-console/src/main/groovy/groovy/console/ui/ConsoleIvyPlugin.groovy
+++ 
b/subprojects/groovy-console/src/main/groovy/groovy/console/ui/ConsoleIvyPlugin.groovy
@@ -34,7 +34,7 @@ class ConsoleIvyPlugin {
     def addListener(Console console) {
         savedConsole = console
         GrapeEngine engine = Grape.instance
-        if (engine?.class?.name == 'groovy.grape.ivy.GrapeIvy' && 
engine.metaClass.respondsTo(engine, 'getIvyInstance', Closure)) {
+        if (engine?.class?.name == 'groovy.grape.GrapeIvy' && 
engine.metaClass.respondsTo(engine, 'getIvyInstance', Closure)) {
             
engine.ivyInstance.eventManager.addIvyListener(engine.makeIvyListener{ ivyEvent 
->
                 switch (ivyEvent.class.simpleName) {
                     case 'StartResolveEvent':

Reply via email to