From 360d44ac043ddcebb2db52ed0d7c7265d88cc7aa Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 24 Jun 2020 11:02:23 +0100 Subject: [PATCH] Restrict JLine version to 2.11 to avoid breaking changes in 2.12+ Closes gh-22072 --- spring-boot-project/spring-boot-parent/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-boot-project/spring-boot-parent/build.gradle b/spring-boot-project/spring-boot-parent/build.gradle index 3c37d70d80f..21ec8cc12fb 100644 --- a/spring-boot-project/spring-boot-parent/build.gradle +++ b/spring-boot-project/spring-boot-parent/build.gradle @@ -35,6 +35,9 @@ bom { } } library("JLine", "2.11") { + prohibit("[2.12,)") { + because "it contains breaking changes" + } group("jline") { modules = [ "jline"