I use GWT 2.9 and JUnit 4, but i'm looking into going up to 5 using the junit-vintage-engine.
However, gwt 2.9 has a requirement on ASM 7 but with Junit 4 this is not an issue. So i tried changing my jUnit dependency to
<groupId>org.junit.vintage</groupId
<artifactId>junit-vintage-engine</artifactId>
<version>5.7.1</version>
Now, after trying to start Jetty in Intellij i get:
Java.lang.RuntimeException: Error scanning entry module-info.class from jar file:junit-vintage-engine-5.7.1.jar Caused by: java.lang.UnsupportedOperationException: This feature requires ASM6
I can't see where junit vintage has a dependency on ASM6, so i'm not sure what's wrong. Is there a way for me to sort this out? Pointers appreciated.