From 3c84f9f8aa4a2b0203bb26e8bc1162bf812e6bff Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 16 Nov 2021 21:28:15 -0800 Subject: [PATCH] Replace the 'javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api' dependency in the jstlDependencies declaration of the DependencySet Gradle Plugin with 'jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api'. --- .../io/spring/gradle/convention/DependencySetPlugin.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/groovy/io/spring/gradle/convention/DependencySetPlugin.groovy b/buildSrc/src/main/groovy/io/spring/gradle/convention/DependencySetPlugin.groovy index ce17158..a23748f 100644 --- a/buildSrc/src/main/groovy/io/spring/gradle/convention/DependencySetPlugin.groovy +++ b/buildSrc/src/main/groovy/io/spring/gradle/convention/DependencySetPlugin.groovy @@ -37,7 +37,7 @@ class DependencySetPlugin implements Plugin { void apply(Project project) { project.ext.jstlDependencies = [ - "javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api", + "jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api", "org.apache.taglibs:taglibs-standard-jstlel" ]