Question about dependency

2004-01-18 Thread Marco Tedone
Hi, I developed my own plugin that is installed under Maven. One of my project uses this plugin to build itself. I've got a couple of questions: 1) Shall I indicate in the project file that the project depends on this plugin? 2) How shall I do it? I tried to specify the following in the

parent maven.xml dependencies inherited by subprojects?

2004-01-18 Thread __matthewHawthorne
I have a main project with project.xml and maven.xml. In maven.xml, I use a Velocity tag library: xmlns:velocity=jelly:org.apache.commons.jelly.tags.velocity.VelocityTagLibrary Since I have many subprojects that extend the main project.xml, I moved the velocity dependency to another project

How can I intercept artifact downloading

2004-01-18 Thread emmanuel . boudrant
Hi, I have a special kind of project (Eclipse PDE project) which require some dependencies I can't put in my maven repository so I want to use a special plugin to retrieve these dependencies. Is it possible to intercept the Maven bootstrap which download the dependencies ? In fact I want to

Re: Question about dependency

2004-01-18 Thread dion
Is the file in your local or remote repo at m aven-jemodist-plugins/plugins/maven-jemodist-plugins-1.0.jar ? -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Marco Tedone [EMAIL PROTECTED] wrote on 18/01/2004 08:55:03 PM: Hi, I developed my own plugin

Re: Question about dependency

2004-01-18 Thread Marco Tedone
The file now is under ${maven.plugin.dir} (which points to %MAVEN_HOME%/plugins. - Original Message - From: [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Sunday, January 18, 2004 3:31 PM Subject: Re: Question about dependency Is the file in your local or remote repo at

Re: How can I intercept artifact downloading

2004-01-18 Thread Marco Tedone
If you have a project that depends on some dependencies, then I think you should indicate those dependencies in one of the project files. Marco - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, January 18, 2004 3:21 PM Subject: How can I intercept artifact

xdoclet task cannot be found - problem with classpath?

2004-01-18 Thread Maciek Zywno
Hello I tried to use xdoclet plugin, but the class definition for xdoclet.modules.web.WebDocletTask cannot be found. I have jars with Task definition classes in .maven\repository\xdoclet\jars: xdoclet-1.2.jar xdoclet-web-module-1.2b4.jar xdoclet-xdoclet-module-1.2.jar

Re: xdoclet task cannot be found - problem with classpath?

2004-01-18 Thread __matthewHawthorne
Maciek Zywno wrote: I tried to use xdoclet plugin, but the class definition for xdoclet.modules.web.WebDocletTask cannot be found. Try running maven with the -X flag. Sometimes there are a chain of ClassNotFoundExceptions -- a class that the WebDocletTask depends on may be missing.

Re: How can I intercept artifact downloading

2004-01-18 Thread emmanuel . boudrant
Selon Marco Tedone [EMAIL PROTECTED]: If you have a project that depends on some dependencies, then I think you should indicate those dependencies in one of the project files. In fact I want to execute some code within my maven plugin (with Jelly context access) before Maven try to download

Problems with xdoc

2004-01-18 Thread Marco Tedone
Hi, I tried quite everything but still I get the same error: BUILD FAILED File.. file:/C:/Documents and Settings/mtedone/.maven/plugins/maven-xdoc-plugin-1.4/ Element... attainGoal Line.. 587 Column 57 No goal [maven-license-plugin:register] Total time: 7 seconds Finished at: Sun Jan

Re: How can I intercept artifact downloading

2004-01-18 Thread dion
Maybe the guys on the mevenide sourceforge project could tell you how they do it. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ [EMAIL PROTECTED] wrote on 19/01/2004 06:00:08 AM: Selon Marco Tedone [EMAIL PROTECTED]: If you have a project that

Re: Question about dependency

2004-01-18 Thread dion
If it's a dependency, it must be in the local repo. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Marco Tedone [EMAIL PROTECTED] wrote on 19/01/2004 02:47:22 AM: The file now is under ${maven.plugin.dir} (which points to %MAVEN_HOME%/plugins. -

Re: xdoclet task cannot be found - problem with classpath?

2004-01-18 Thread Maciek Zywno
__matthewHawthorne wrote: Maciek Zywno wrote: I tried to use xdoclet plugin, but the class definition for xdoclet.modules.web.WebDocletTask cannot be found. Try running maven with the -X flag. Sometimes there are a chain of ClassNotFoundExceptions -- a class that the WebDocletTask depends on

Re: xdoclet task cannot be found - problem with classpath?

2004-01-18 Thread matt
Please include the trace output when running maven with the -X flag - something which is not obvious to you, may be to others. It's quite likely you need a bunch of other xdoclet modules in your dependencies. It's been a while since I tried to use it (I use maven.xml and the ant task now),

Re: xdoclet task cannot be found - problem with classpath?

2004-01-18 Thread Landon Clark
Hi, I had a similar problem. I needed to add two dependencies to my project.xml: dependency groupIdxdoclet/groupId artifactIdxdoclet-hibernate-module/artifactId version1.2/version typejar/type /dependency dependency groupIdxjavadoc/groupId