Update jsp-api
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 077e55e..25b92a3 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -30,6 +30,8 @@
         versions: ">= 2.0"
       - dependency-name: "com.sun.xml.ws:*"
         versions: ">= 3.0"
+      - dependency-name: "jakarta.servlet.jsp:jakarta.servlet.jsp-api"
+        versions: ">= 3.0"
       - dependency-name: "jakarta.xml.soap:jakarta.xml.soap-api"
         versions: ">= 2.0"
       # Jetty 9 supports Servlets 3.1.
diff --git a/modules/webapp/pom.xml b/modules/webapp/pom.xml
index 50e4178..0a37a81 100644
--- a/modules/webapp/pom.xml
+++ b/modules/webapp/pom.xml
@@ -123,9 +123,9 @@
         <dependency>
             <!-- Not required for the Maven build, but necessary to avoid errors when
                  importing the project into an IDE. -->
-            <groupId>javax.servlet.jsp</groupId>
-            <artifactId>jsp-api</artifactId>
-            <version>2.0</version>
+            <groupId>jakarta.servlet.jsp</groupId>
+            <artifactId>jakarta.servlet.jsp-api</artifactId>
+            <version>2.3.6</version>
             <scope>provided</scope>
         </dependency>
         <dependency>