I ma trying to run the java project jsignpdf and after importing the project i added some libraries which are required.
Now when running the project I get error like
taskdef class net.sourceforge.jarbundler.JarBundler cannot be found
using the classloader AntClassLoader[]
BUILD FAILED (total time: 0 seconds)
In my build.xml i have following related to it:
<taskdef name="jarbundler" classname="net.sourceforge.jarbundler.JarBundler">
<classpath>
<pathelement location="${jarbundler.jar}"/>
</classpath>
</taskdef>
So how this can be solved?