Possible Duplicate:
How to configure Jenkins StarTeam plugin?
I'm using Hudson 2.0, Solaris 10 and the latest version of the Starteam plugin. I'm trying to run the StarTeam task to checkout my project. Sadly, I get this error ...
FATAL: com/starbase/starteam/Folder
java.lang.NoClassDefFoundError: com/starbase/starteam/Folder
at hudson.plugins.starteam.StarTeamSCM.checkout(StarTeamSCM.java:127)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1180)
at hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractBuild.java:506)
at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:422)
at hudson.model.Run.run(Run.java:1362)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:145)
Caused by: java.lang.ClassNotFoundException: com.starbase.starteam.Folder
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
... 8 more
I have the starteam110.jar file (which contains the class in question) in my /apps/hudson/WEB-INF/lib directory as well as the fact I start Hudson by putting that file in my classpath ...
<exec_method type="method" name="start" exec="/usr/bin/java -Xmx512m -DHUDSON_HOME=/apps/hudson/ -classpath /apps/hudson/WEB-INF/lib/starteam110.jar -jar /apps/hudson/hudson.war --prefix=/hudson" timeout_seconds="0"/>
How can I cure this error or troubleshoot further? Thanks, - Dave