I have a batch file with the following information:
java org.testng.TestNG test.xml
Where test.xml is the testng suite xml. Now when I run the batch file (Runme.bat), the test scripts are triggered and working fine. All I wanted to do was to fire this batch file from jenkins. When I add it as a Build task to a project in jenkins like:
cmd /k "C:\Runme.bat"
Running the build does not trigger the testNG suite instead gives the following error:
java.lang.NoClassDefFoundError: org/testng/TestNG Caused by:
java.lang.ClassNotFoundException: org.testng.TestNG at
java.net.URLClassLoader$1.run(Unknown Source) at
java.security.AccessController.doPrivileged(Native Method) at
java.net.URLClassLoader.findClass(Unknown Source) at
java.lang.ClassLoader.loadClass(Unknown Source) at
sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at
java.lang.ClassLoader.loadClass(Unknown Source) Could not find the
main class: org.testng.TestNG. Program will exit. Exception in thread "main"
C:\Documents and Settings\GopalakA\Desktop\AutomationAnand\ABC_JSAF> C:\Program Files\Jenkins\jobs\Test\workspace>exit 0
Even though the classpath is set correctly as I can trigger the suite by manually running the bat file. Any help?