I am trying to build jakarta-mail 1.6.5 but my build failed on tests. I don’t know Java well, so I want to try disable all tests on project. Tell me please how I can do that?
I try to comment some section with “test” label on mail-1.6.5/mail/pom.xml but is’s didn’t work.
https://github.com/jakartaee/mail-api/tree/1.6.5
1
You can run the build with mvn install -DskipTests
to skip over any unit/integration tests there.
2