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 6ba65dec65 GROOVY-8162: Update Groovysh to JLine3 (remove temp 
dependency restrictions)
6ba65dec65 is described below

commit 6ba65dec65139d9d82fbca3fe14044741cce53cb
Author: Paul King <[email protected]>
AuthorDate: Tue Jul 29 14:06:00 2025 +1000

    GROOVY-8162: Update Groovysh to JLine3 (remove temp dependency restrictions)
---
 subprojects/groovy-groovysh/build.gradle | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/subprojects/groovy-groovysh/build.gradle 
b/subprojects/groovy-groovysh/build.gradle
index 4e423cbb04..2d36e10a3c 100644
--- a/subprojects/groovy-groovysh/build.gradle
+++ b/subprojects/groovy-groovysh/build.gradle
@@ -33,15 +33,15 @@ dependencies {
     implementation projects.groovyJson
     implementation projects.groovyNio
     testImplementation projects.groovyTest
-//    implementation 'net.java.dev.jna:jna:5.17.0'
+    implementation 'net.java.dev.jna:jna:5.17.0'
     implementation "org.jline:jansi:${versions.jline}"
     implementation "org.jline:jline-reader:${versions.jline}"
     implementation "org.jline:jline-console:${versions.jline}"
-//    implementation "org.jline:jline-terminal-jni:${versions.jline}"
+    implementation "org.jline:jline-terminal-jni:${versions.jline}"
     implementation("org.jline:jline-terminal-jansi:${versions.jline}") {
         exclude(group: 'org.fusesource.jansi', module: 'jansi')
     }
-//    implementation "org.jline:jline-terminal-jna:${versions.jline}"
+    implementation "org.jline:jline-terminal-jna:${versions.jline}"
     implementation("org.jline:jline-terminal:${versions.jline}") {
 //        exclude(group: 'junit', module: 'junit')
     }

Reply via email to