Vinmee
Vinmee

Reputation: 23

Error running TestNG under Eclipse "not a supported TestNG version"

I have my Maven Project set up in Eclipse Kepler. The pom.xml file has a dependency on TestNg 6.0.1. When I right-click on my project, it displays the option "Run as TestNG". But when i click on it, Eclipse shows an error:

Exception in thread "main" org.testng.TestNGException: 
6.0.1 is not a supported TestNG version
  at org.testng.remote.support.ServiceLoaderHelper.getFirst(ServiceLoaderHelper.java:22)
  at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:43)

Dependency in POM:

<dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>6.0.1</version>
</dependency>

Upvotes: 1

Views: 3855

Answers (1)

niharika_neo
niharika_neo

Reputation: 8531

Use the latest version of TestNG as a dependency in your POM.

Probably your Eclipse plugin for TestNG is up to date, and the TestNG version used as the POM dependency is too old. Try with 6.9.10

Upvotes: 4

Related Questions