Migrate from javax.servlet to jakarta.servlet namespace.
The powers that be decided that it would be cool to break everything in the entire Java universe because they didn't want to negotiate with Oracle the permission to take over the javax.servlet namespace. So now we all get to either have two versions of all of our web-related libraries, or just pick a time to break every downstream dependency and force them to jump through this renaming hoop as well. Today is the day that we're forcing the hoop jumping. h/t to fourbites for starting this whole ball rolling.
This commit is contained in:
@@ -39,9 +39,9 @@
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>javax.servlet-api</artifactId>
|
||||
<version>3.1.0</version>
|
||||
<groupId>jakarta.servlet</groupId>
|
||||
<artifactId>jakarta.servlet-api</artifactId>
|
||||
<version>6.0.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
||||
Reference in New Issue
Block a user