Migrate to Jakarta EE 9
Closes gh-1949
This commit is contained in:
@@ -9,15 +9,14 @@ dependencies {
|
||||
implementation "io.lettuce:lettuce-core"
|
||||
implementation "org.webjars:bootstrap"
|
||||
implementation "org.webjars:webjars-taglib"
|
||||
implementation "javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api"
|
||||
implementation "org.apache.taglibs:taglibs-standard-jstlel"
|
||||
implementation "org.slf4j:slf4j-api"
|
||||
implementation "org.slf4j:jcl-over-slf4j"
|
||||
implementation "org.slf4j:log4j-over-slf4j"
|
||||
implementation "ch.qos.logback:logback-classic"
|
||||
implementation "org.testcontainers:testcontainers"
|
||||
|
||||
providedCompile "javax.servlet:javax.servlet-api"
|
||||
providedCompile "jakarta.servlet:jakarta.servlet-api"
|
||||
providedCompile "org.glassfish.web:jakarta.servlet.jsp.jstl"
|
||||
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
testImplementation "org.junit.jupiter:junit-jupiter-api"
|
||||
|
||||
@@ -18,9 +18,9 @@ package sample;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import jakarta.servlet.http.HttpServlet;
|
||||
import jakarta.servlet.http.HttpServletRequest;
|
||||
import jakarta.servlet.http.HttpServletResponse;
|
||||
|
||||
// tag::class[]
|
||||
public class SessionServlet extends HttpServlet {
|
||||
|
||||
Reference in New Issue
Block a user