Add note about Logback version and the Gretty Gradle Plugin.

Unable to upgrade to Logback 1.2.10 (thereby matching Spring Boot 2.7.x) given the Gretty Gradle Plugin is limited to Logback 1.1.3 at the moment.

See: https://github.com/gretty-gradle-plugin/gretty/blob/v4.0.0/gradle.properties#L16.
This commit is contained in:
John Blum
2022-01-18 13:04:22 -08:00
parent b6646aa0b4
commit 60bfb8ea4a

View File

@@ -5,6 +5,8 @@ ext['assertjVersion'] = '3.22.0'
ext['jakartaServletApiVersion'] ='4.0.4'
ext['jakartaServletJspJstlApiVersion'] = '1.2.7'
ext['log4jVersion'] = '2.17.1'
// Logback version is currently constrained by tbe Gretty Gradle Plugin.
// See: https://github.com/gretty-gradle-plugin/gretty/blob/v4.0.0/gradle.properties#L16
ext['logbackVersion'] = '1.2.3'
ext['junitVersion'] = '4.13.2'
ext['mockitoVersion'] = '4.2.0'