Milos, Not sure if this is correct, but dependencies of that type are treated differently and installed as a plugin rather than on the classpath. Unfortunately, I don't think that the plugin classes are added to the project's classpath so you can't access that tag from maven.xml.
You have a couple of options: - put the jelly utilising the tag in the plugin, perhaps wrapping it in a <define: /> tag. - if the plugin is only providing the tag lib, you don't need it to be a plugin, just a normal JAR dependency. HTH, Brett On Sun, 23 Jan 2005 09:48:24 +0100, Milos Kleint <[EMAIL PROTECTED]> wrote: > I have declared it as dependency of type plugin? > > Milos > > > On Sun, 23 Jan 2005 09:36:24 +1100, Dion Gillard <[EMAIL PROTECTED]> wrote: > > How is the taglib on the project's classpath? > > > > > > On Sat, 22 Jan 2005 16:18:52 +0100, Milos Kleint <[EMAIL PROTECTED]> wrote: > > > hello. > > > > > > I have the following problem. > > > > > > in my plugin I have a taglibrary, in order to use it, I specify a > > > namespace in the plugin.jelly file: > > > xmlns:mevenide="jelly:org.mevenide.tags.netbeans.MevenideNbTagLibrary" > > > > > > Now I'd like to use the tags in the maven.xml for a project as well. > > > Defining the same namespace doesn't work, even though the plugin is > > > defined in the pom. > > > > > > I've tried to find something similar in the default maven plugins but > > > all I found was the define:taglib dynamic taglibraries.. > > > > > > Any hints, code snippets to look at? > > > > > > Thanks > > > > > > Milos Kleint > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > > -- > > http://www.multitask.com.au/people/dion/ > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
