Re: FAQ generation (where'd did the .fml extension come from?)

2005-04-19 Thread Wim Deblauwe
I was suprised by that too. It's a bit annoying, because you can't just double-click such a file to open it with your favorite xml-editor, or you have to associate this extension extra. I would have been happier with just .xml or .faq.xml (like .hbm.xml) regards, Wim On 4/19/05, Mykel Alvis

RE: Maven Eclipse - eclipse.dependency property

2005-04-19 Thread Jörg Schaible
Hi Mariano Mariano Cortesi (Cono) wrote on Monday, April 18, 2005 8:14 PM: Hi, I have a question on the eclipse.dependency property of the eclipse plugin. I believe I'm posting to the right place, but I'm not really sure about that. So, if this post is inadequate just let me know :-).

How can I use multiproject Goal in Maven2

2005-04-19 Thread NATARAJAN Sasi Kumar
I tried m2 multiproject unable to download Downloading: org/apache/maven/plugins/maven-multiproject-plugin/1.0-SNAPSHOT/maven-mu ltiproject-plugin-1.0-SNAPSHOT.jar I am getting ERROR D:\Maven2.0\binm2 multiproject [INFO]

Re: How can I use multiproject Goal in Maven2

2005-04-19 Thread Brett Porter
Multiple projects are built in: http://maven.apache.org/maven2/getting-started.html#Multiple_Modules Please be aware that Maven2 is -not- Maven 1.0! Most plugins are different, or not yet compatible. - Brett On 4/19/05, NATARAJAN Sasi Kumar [EMAIL PROTECTED] wrote: I tried m2 multiproject

Yet Another Eclipse Issue

2005-04-19 Thread Mike Haller
Hi, i want to manage an Eclipse Plugin project with Maven. The Plug-in Dependencies virtual folder has all the Eclipse jar's (ui.jar, swt.jar etc.) But how do I let Maven know about these libraries? I haven't got them in my workspace, since they reside in the target platform folder. The

RE: Clover Plugin regexp statement context

2005-04-19 Thread Pavel Müller
Thanks Vincent, your example in CVS was very helpful. It was of course my mistake in regular expression. Now I've got something that seems to be working: maven.clover.context.statement.names=nolog maven.clover.context.statement.regexps=.*log.*\.(is.*|error.*|warn.*|info.*| debug.*).* Cheers

unable to create war file by using maven2

2005-04-19 Thread NATARAJAN Sasi Kumar
I used following tag, shall I need any change on the tag?. Please let me know project model modelVersion4.0.0/modelVersion groupIdcom.mycompany.app/groupId artifactIdmy-app/artifactId packagingjar/packaging version1.0-SNAPSHOT/version build sourceDirectory

Re: unable to create war file by using maven2

2005-04-19 Thread Brett Porter
these should be two separate files, and no model/ tags inside project/ See the getting started guide for a full example. - Brett On 4/19/05, NATARAJAN Sasi Kumar [EMAIL PROTECTED] wrote: I used following tag, shall I need any change on the tag?. Please let me know project model

Re: unable to create war file by using maven2

2005-04-19 Thread Emmanuel Venisse
The web.xml file is missing. It's a required file for the war plugin. You must add it in a resource directory Emmanuel NATARAJAN Sasi Kumar said: I used following tag, shall I need any change on the tag?. Please let me know project model modelVersion4.0.0/modelVersion

RE: unable to create war file by using maven2

2005-04-19 Thread NATARAJAN Sasi Kumar
1.For war file creation, the following tag I am using. Shall I need any change (I used correct structure of pom.xml. I have three pom.xml file, the below file I am using war file creation. Correct place I put web.xml also and that place web.xml also already is there ) model parent

RE: unable to create war file by using maven2

2005-04-19 Thread Kenney Westerhof
On Tue, 19 Apr 2005, NATARAJAN Sasi Kumar wrote: You specified warNamemy-webapp/warName so m2 builds my-webapp.war. The install phase however, expects my-webapp-1.0-SNAPSHOT.war. Leave out the warName/ tag, and try again. 1.For war file creation, the following tag I am using. Shall I need any

Javadoc plugin from behind proxy that needs authentication

2005-04-19 Thread Wim Deblauwe
Hi, we have a http proxy at work that needs authentication. If I want to have links in my Javadocs to other libraries I use, I can't use the normal mechanism (http://maven.apache.org/reference/plugins/javadoc/faq.html#firewall). However, plugin:download manages to get through the firewall, so

Maven2 jar classpath

2005-04-19 Thread Ilyevsky, Leonid (Equity Trading)
As my dependency list grows, I would like maven 2 to automatically generage class path in the manifest from dependency information. How should I specify it in pom.xml? If you are not an intended recipient of this e-mail, please notify the

Re: Javadoc plugin from behind proxy that needs authentication

2005-04-19 Thread Wim Deblauwe
I found how to create the variable on the fly using j:new/. I now have this piece of code that downloads the package-list automatically and generates the correct links for when you are stuck behind a firewall that needs authentication. However it does not work! Is the Javadoc plugin responsible on

Réf. : Re: Javadoc plugin from behind proxy that needs authentication

2005-04-19 Thread julien . kirch
Hi, the feature is apparently not supported for the moment : http://jira.codehaus.org/browse/MPJAVADOC-34 for details Julien Extranet [EMAIL PROTECTED] - 19/04/2005 16:01 Veuillez répondre à users@maven.apache.org Pour : users cc : Objet : Re: Javadoc plugin from behind proxy

Re: Maven2 jar classpath

2005-04-19 Thread Kenney Westerhof
On Tue, 19 Apr 2005, Ilyevsky, Leonid (Equity Trading) wrote: use this: build plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-jar-plugin/artifactId configuration archive manifest addClasspathtrue/addClasspath

Re: Réf. : Re: Javadoc plugin from behind proxy that needs authentication

2005-04-19 Thread Wim Deblauwe
On 4/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, the feature is apparently not supported for the moment : http://jira.codehaus.org/browse/MPJAVADOC-34 for details I know, my code is an attempt to solve this issue. However it does not seem to work 100% yet. The package-list files

[m2] Multiproject Dependecies

2005-04-19 Thread Peter van de Hoef
Hi all, I am having a problem with building/installing POM's that depend on each other. My question is: how can I enfore a specific build order in multiproject builds? Basically, the configuration (stripped down to be able to isolate the problem) is as follows: A 'parent': project

RE: Maven2 jar classpath

2005-04-19 Thread Ilyevsky, Leonid (Equity Trading)
Thanks Kenney, it works. But, to make it useful, I need to put all the jar files in one directory, because maven puts just the jar file names in the classpath. Right now I have them in .m2/repository, in their subdirectories. I guess, I will create a directory with soft links for my run

Re: Réf. : Re: Javadoc plugin from b ehind proxy that needs authentication

2005-04-19 Thread Wim Deblauwe
Found the solution, there was a typo in my code. If the javadoc plugin people are interested, I am more then willing to share my code. Usage: put this in your project.properties: maven.javadoc.mode.proxy.online=true

[M1] What is the stablest TomCat plugin?

2005-04-19 Thread Trudy Cool
Hi, I've tried to use the codeczar plugin referred to on the page ... http://maven.apache.org/reference/3rdparty.html ... but it fails in a bizarre fashion (see below). The site page says there is an alternative ... This isn't the only tomcat plugin, there is a similar plugin at codehaus.

Nuisance problem (maven2, java compiler and CVS)

2005-04-19 Thread Ilyevsky, Leonid (Equity Trading)
When I check out the file for editing, CVS puts a copy of it in CVS/Base. Then maven complains about duplicate class. Is there a way to tell maven to ignore those extra files? If you are not an intended recipient of this e-mail, please

how update local repo?

2005-04-19 Thread Alexander Rupsch
Hi, is there a goal I can use to let maven update an artifact in the local repository? The background is the following: If one developer puts a new version of a artifact into the company repo and into its local repo and then updates the eclipse .classpath and checks in, other developers need to

RE: how update local repo?

2005-04-19 Thread Aleksandr Shneyderman
I usually run maven console and quit. -Original Message- From: Alexander Rupsch [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 19, 2005 3:30 PM To: Maven Users List Subject: how update local repo? Hi, is there a goal I can use to let maven update an artifact in the local

RE: Réf. : Re: Javadoc plugin from b ehind proxy that needs authentication

2005-04-19 Thread Arnaud HERITIER
Hi Wim, Yes we are interested. I'm not sure to have the time to apply it soonly but I'll take a look at it as soon as possible. Can you generate a diff (http://maven.apache.org/contributing/patches.html) and attach it to the issue ? Thanks Arnaud -Message

Re: Nuisance problem (maven2, java compiler and CVS)

2005-04-19 Thread Brett Porter
This seems to be a bug... can you please file it in JIRA? Thanks, Brett On 4/20/05, Ilyevsky, Leonid (Equity Trading) [EMAIL PROTECTED] wrote: When I check out the file for editing, CVS puts a copy of it in CVS/Base. Then maven complains about duplicate class. Is there a way to tell maven to

Re: [m2] Multiproject Dependecies

2005-04-19 Thread Brett Porter
You are (mostly) correct. The ordering is currently by dependencies, then alphabetical. It should be in the following order: - dependencies - parent relationships - module ordering We haven't noticed, as we consider the best practice to be that the parent you extend is always the directory one

Re: unable to create war file by using maven2

2005-04-19 Thread Brett Porter
Yes, Keneey is correct, this is a bug in m2-alpha-1, already filed in JIRA. - Brett On 4/19/05, Kenney Westerhof [EMAIL PROTECTED] wrote: On Tue, 19 Apr 2005, NATARAJAN Sasi Kumar wrote: You specified warNamemy-webapp/warName so m2 builds my-webapp.war. The install phase however, expects

Re: Maven2 jar classpath

2005-04-19 Thread Brett Porter
you are missing plugins/ to wrap the plugin/ element. On 4/20/05, Pieter Laeremans [EMAIL PROTECTED] wrote: When I want to do this I get this: - Brett - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Maven2 jar classpath

2005-04-19 Thread Pieter Laeremans
Brett Porter wrote: you are missing plugins/ to wrap the plugin/ element. On 4/20/05, Pieter Laeremans [EMAIL PROTECTED] wrote: When I want to do this I get this: - Brett Inded. The problem is fixed Thanks! kind regards, Pieter -

Re: how update local repo?

2005-04-19 Thread Chris Custine
I assume you want to do this without restarting any running maven consoles or plugins. If that is the case, I have looked high and low and haven't found anything. My team uses Cruise Control to build and update maven SNAPSHOTS of dozens of internal components whenever someone does a CVS