-
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
jetty 12.0.x no need test jar #12264
Conversation
olamy
commented
Sep 12, 2024
- simplify pom and avoid using test-jar for distribution test
- spotless:apply
Signed-off-by: Olivier Lamy <olamy@apache.org>
Signed-off-by: Olivier Lamy <olamy@apache.org>
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.
I don't particularly like to put test classes in src/main
, they belong to src/test
.
If I need to reuse test classes, then it's natural to depend on a test-jar
.
What is the problem this PR is trying to solve?
I do not see a problem with having this abstract class here (it's not a test class at all)
I want to avoid producing this test jar which is not needed and add more artifact (with not needed classes) for no reason And you cannot use |
more seriously I'm looking at improving build time and IO usage (disk) is a big problem. By the way I wonder why do we have all of those |
…jar and dependency not really needed Signed-off-by: Olivier Lamy <olamy@apache.org>
finally moving |
done via #12274 |