Type a Maven JUnit dependency block
Type a Maven JUnit dependency block
Answer
<dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.0</version> <scope>test</scope> </dependency>
groupId:artifactId:version is Maven's coordinate system. scope test keeps JUnit off the production classpath — only available when compiling and running tests.