You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# -DforkCount=0 allows to attach debugger in intellij# -Dsurefire.useFile=false# -DtrimStackTrace=false this avoids stacktrace trimming# run every testtest -DforkCount=0 -Dsurefire.useFile=false -DtrimStackTrace=false
# run test in a classtest -Dtest=ClassToTest -DforkCount=0 -Dsurefire.useFile=false -DtrimStackTrace=false
# run specific test in a classtest -Dtest=ClassToTest#methodToTest -DforkCount=0 -Dsurefire.useFile=false -DtrimStackTrace=false
See what the final pom will be when inheriting from parent
mvn help:effective-pom
Show dependency tree
# useful to discover possible classpath clash errors
mvn dependency:tree -Dverbose