Skip to content

Commit

Permalink
[UNDERTOW-2122] Javax imports in servlet tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartinc committed Jul 12, 2022
1 parent 2702235 commit cba5e41
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions core/pom.xml
Expand Up @@ -239,6 +239,7 @@
<configuration>
<enableAssertions>true</enableAssertions>
<runOrder>reversealphabetical</runOrder>
<failIfNoTests>true</failIfNoTests>
<systemPropertyVariables>
<test.ajp>${ajp}</test.ajp>
<test.proxy>${proxy}</test.proxy>
Expand Down
1 change: 1 addition & 0 deletions servlet/pom.xml
Expand Up @@ -197,6 +197,7 @@
<configuration>
<enableAssertions>true</enableAssertions>
<runOrder>reversealphabetical</runOrder>
<failIfNoTests>true</failIfNoTests>
<systemPropertyVariables>
<test.ajp>${ajp}</test.ajp>
<test.proxy>${proxy}</test.proxy>
Expand Down
Expand Up @@ -19,10 +19,10 @@

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import jakarta.servlet.ServletException;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;

/**
*
Expand Down
Expand Up @@ -19,7 +19,7 @@

import static io.undertow.servlet.Servlets.servlet;

import javax.servlet.ServletException;
import jakarta.servlet.ServletException;

import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
Expand Down
1 change: 1 addition & 0 deletions websockets-jsr/pom.xml
Expand Up @@ -171,6 +171,7 @@
<runOrder>reversealphabetical</runOrder>
<skip>${skipWebSocketTests}</skip>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<failIfNoTests>true</failIfNoTests>
<systemPropertyVariables>
<proxy>${proxy}</proxy>
<default.server.address>localhost</default.server.address>
Expand Down

0 comments on commit cba5e41

Please sign in to comment.