-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #3080 - Do not create and use jars with "tests" classifier. #5729
Conversation
Removed the jetty-server and jetty-servlet test-jar artifacts. The only one left is the jetty-maven-plugin test-jar. Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ServletTester
is used by many projects, and several open source projects.
We cannot get rid of it.
Move it to another location, don't delete it.
Reinstated ServletTester in src/main/java for backwards compatibility. Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
@@ -39,6 +40,51 @@ | |||
import org.slf4j.Logger; | |||
import org.slf4j.LoggerFactory; | |||
|
|||
/** | |||
* <p>ServletTester should not be used.</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps say:
* <p>ServletTester should not be used.</p> | |
* <p>ServletTester is not best practise and may be deprecated in future releases.</p> |
jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletTester.java
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
other than slightly better wording. LGTM
Updates after review. Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
Removed the jetty-server and jetty-servlet test-jar artifacts.
The only one left is the jetty-maven-plugin test-jar.
Signed-off-by: Simone Bordet simone.bordet@gmail.com