79198270

Date: 2024-11-17 22:23:33
Score: 0.5
Natty:
Report link

Generally speaking the problem is in a conflict of different versions of junit5 dependencies in a project. To find this conflict you’d better generate a dependency tree:

mvn dependency:tree

and check which transitive dependencies fetch the same junit5 dependencies (i.e. junit-jupiter-engine, junit-jupiter-api, etc) of different versions.

To fix the problem you would need in your pom.xml to

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Dzmitry Paddubnik