Migration to JakartaEE 8 (#2777)

Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
Co-authored-by: Jiayu Liu <Jimexist@users.noreply.github.com>
This commit is contained in:
Bogdan Drutu 2023-04-26 17:45:30 -07:00 committed by GitHub
parent 67de2f5542
commit 172ad9b5b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -28,11 +28,11 @@ maven-repository-id=apache.releases.https
httpclient.version=4.5.13
httpcore.version=4.4.15
slf4j.version=1.7.36
servlet.version=4.0.1
servlet.version=4.0.3
tomcat.embed.version=9.0.43
junit.version=5.8.2
mockito.version=5.3.0
javax.annotation.version=1.3.2
javax.annotation.version=1.3.5
commons-lang3.version=3.12.0
org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \

View File

@ -63,8 +63,8 @@ dependencies {
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
implementation "org.apache.httpcomponents:httpclient:${httpclientVersion}"
implementation "org.apache.httpcomponents:httpcore:${httpcoreVersion}"
implementation "javax.servlet:javax.servlet-api:${servletVersion}"
implementation "javax.annotation:javax.annotation-api:${javaxAnnotationVersion}"
implementation "jakarta.servlet:jakarta.servlet-api:${servletVersion}"
implementation "jakarta.annotation:jakarta.annotation-api:${javaxAnnotationVersion}"
implementation "org.apache.commons:commons-lang3:${commonsLang3Version}"
testImplementation "org.junit.jupiter:junit-jupiter:${junitVersion}"