diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 0354cc049..2266f1d69 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -52,6 +52,7 @@ Picocli follows [semantic versioning](http://semver.org/). * [#1459] BUILD: The nexus-staging Gradle plugin must be applied to the root project, not to subprojects. Thanks to [Andreas Deininger](https://github.com/deining) for raising this. * [#1503] BUILD: Fix failing `System.exit` tests on Java 18. * [#1504] BUILD: Run tests on Java 6-7 in CI environment, semi-automate testing on Java 5. +* [#1516] DEP: Remove redundant dependency on `jline-console` in `picocli-shell-jline3`. Thanks to [kaushalkumar](https://github.com/kaushalkumar) for raising this. * [#1495] DEP: Bump validation-api from 2.0.0.Final to 2.0.1.Final * [#1496] DEP: Bump biz.aQute.bnd.gradle from 5.1.2 to 6.1.0 * [#1494] DEP: Bump kotlin-gradle-plugin from 1.5.31 to 1.6.0 diff --git a/picocli-shell-jline3/build.gradle b/picocli-shell-jline3/build.gradle index 32ab71797..4d7a91863 100644 --- a/picocli-shell-jline3/build.gradle +++ b/picocli-shell-jline3/build.gradle @@ -11,7 +11,6 @@ targetCompatibility = 1.8 dependencies { api rootProject api "org.jline:jline:$jline3Version" - api "org.jline:jline-console:$jline3Version" testImplementation "junit:junit:$junitVersion" }