ARTICLE AD BOX
I’m using VMLens to run concurrency tests in my Maven Java project, and I want to integrate these tests into a CI/CD pipeline.
By default, if a test encounters a deadlock, the build hangs indefinitely. For CI/CD, I need the test run to fail fast and terminate automatically when a deadlock is detected, so the pipeline doesn’t get stuck.
How can I configure the test-vmlens-maven-plugin so that it fails immediately when a deadlock occurs in a test?
