running test suite is not working in junit5 through maven
问题 @SelectPackages and @SelectClasses tags are not getting parsed with maven test command.Though it is working fine in IDE. Even I tried with tag inside pom.xml. Here is the code snippet : PaymentServiceTest.java package xyz.howtoprogram.junit5.payment; import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.Test; import org.junit.platform.runner.JUnitPlatform; import org.junit.runner.RunWith; @RunWith(JUnitPlatform.class) public class PaymentServiceTest { @Test