I\'m pretty new to maven and I want to run my test classes using maven. I have generated the testng.xml and I have created the POM.xml file also. But when you run the
In your pom.xml file you have scope of testng as test
org.testng testng 6.9.13.6 test
Replace the scope by compile
org.testng testng 6.9.13.6 compile