You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Tate Austin <Ta...@usi.net> on 2005/03/03 21:54:55 UTC

creating my own plugin

Okay so I have written a very basic plugin, and in attempting to run
'maven plugin' maven errors out with:
java.lang.ClassNotFoundException:
org.apache.commons.jelly.tags.velocity.VelocityTagLibrary
        at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
 
the jar for the Velocity tag library is right there in the .maven
repository that maven just created.  It downloaded the thing not 4
minutes before.  I look in the
commons-jelly-tags-velocity-20030303.205659.jar and not only is it
there, but the path to it within it is complete;
org.apache.commons.jelly.tags.velocity.  So what detail am I missing?