RE: qalab.xml does not exist.

2006-10-14 Thread Guillaume Tardif
Hi, This happens typically if you add QLab reports without adding qlab in your build/plugin section, associated to phase pre-site for exemple Note that you also need to add pmd execution there, since qlab uses the pmd xml file. If you have not added qlab to your build section, take a look at

RE: qalab.xml does not exist.

2006-10-14 Thread Guillaume Tardif
To avoid any dependancy between the build phases (compile/test/verify/install) and site generation, link your qlab execution to phase pre-site instead of verify Guillaume -Message d'origine- De : Mick Knutson [mailto:[EMAIL PROTECTED] Envoyé : samedi 14 octobre 2006 01:49 À : maven

[OT][ANN] JAVAWUG Video / Jason van Zyl Maven 2.0 / Available Now

2006-10-14 Thread Peter Pilgrim
Hi All The Java Web User Group is proud to announce that the Google Video for BOF 22 is now uploaded. Jason van Zyl presented Maven 2.0 at the Sun Microsystem's London Office, on Wednesday 22nd September 2006. Over 90 minutes of Maven, build philosophy, design, architecture, discussions, and

Missing Javax jars

2006-10-14 Thread Dmystery
The javax.transaction and javax.security jars are missing in http://repo1.maven.org. I'm using hibernate for compilation and i dont know why it wants these javax jars. I can set up a local hibernate repository but i want maven to download everything from the central. Is there a work around.

Re: XMLBeans Plugin - include subdirectories

2006-10-14 Thread cameron101
It would be great if the mvn2 pluggin supported file sets as per the ant target but so far as I can see it does not :-( An alternative is (it's not a great solution but it's workable) is to create a separate project/module with all your .xsd, nested in the desired sub directories etc. Set this

Re: site customization

2006-10-14 Thread Arik Kfir
Note that you can also use this syntax: [snip] ... menu name=modules/ menu name=reports/ ... [/snip] On Fri, 2006-10-13 at 12:20 -0700, Attila Mezei-Horvati wrote: Dohh. Here is the solution, if other people are interested: menu name=Development item name=Setup href=howto.html/

Re: Maven plugin to generate Java source, SQL schema, and O/R mapping files from XSD?

2006-10-14 Thread Aleksei Valikov
Hi. Its great that these tools exist -- obviously I had no idea. ;-) Yeah, we're programmers not promoters... I'm going to have to take a look at both of them and perhaps integrate one of them into our build process... Let me know if you experience any problems with Hyperjaxb2. There's a

activating multiple profiles

2006-10-14 Thread Nir Feldman
Can I activate multiple profiles from command line? I have tried writing: mvn help:active-profiles -P all -P noTests but only the all profile was active. Thanks, Nir Feldman, CCM RD, [EMAIL PROTECTED] direct +972-3-5399896 fax +972-3-5331617 19 Shabazi St., Yehud, Israel 56100 MERCURY

Re: [M2] Changelog Plugin and CVS Tags

2006-10-14 Thread Dennis Lundberg
Hi Dan He's talking about the *changelog* plugin, not the *changes* plugin. The changelog plugin has not been release yet, you still require a snapshot of it. Hopefully my day job will require less of my time soon, and I will have the time to release the changelog plugin as well... --

Re: [M2] Changelog Plugin and CVS Tags

2006-10-14 Thread Dennis Lundberg
Hi Nate I'll try to see if I can replicate this. From your text I understand that you are using Windows as your client OS and the command line CVS client from WinCVS, is that correct? What CVS server are you using and what OS does it run on? -- Dennis Lundberg Nate wrote: First of all,

Re: Missing Javax jars

2006-10-14 Thread Carlos Sanchez
http://maven.apache.org/guides/mini/guide-coping-with-sun-jars.html On 10/14/06, Dmystery [EMAIL PROTECTED] wrote: The javax.transaction and javax.security jars are missing in http://repo1.maven.org. I'm using hibernate for compilation and i dont know why it wants these javax jars. I can set

Re: activating multiple profiles

2006-10-14 Thread Wendy Smoak
On 10/14/06, Nir Feldman [EMAIL PROTECTED] wrote: Can I activate multiple profiles from command line? I have tried writing: mvn help:active-profiles -P all -P noTests but only the all profile was active. mvn help:active-profiles -Pall,noTests ... add whitespace as desired. :) -- Wendy

Re: [m2] finalName not working

2006-10-14 Thread Doug Douglass
Yann, This is to be expected. When running maven in your B project, maven has no knowledge of project A as a module to be built and referenced, only as a dependency that needs to be retrieved from a repository and added to the classpath. In addition, finalName only effects the name of the

How to unpack a zip file into a source directory

2006-10-14 Thread Naresh Bhatia
Hi, I would like to unpack a zip file into a source directory using Maven. What is the best way to do this? Here are the details of what I am trying to do: - The zip file is essentially the Dojo JavaScript library (ajax-2006.10.10.zip ) - it simply contains JavaScript source. - I would like to

Re: How to unpack a zip file into a source directory

2006-10-14 Thread Wendy Smoak
On 10/14/06, Naresh Bhatia [EMAIL PROTECTED] wrote: I would like to unpack a zip file into a source directory using Maven. What is the best way to do this? I'm doing something similar with the Selenium zip file, using dependency-maven-plugin's 'unpack' goal. Take a look at this wiki page:

RE: How to unpack a zip file into a source directory

2006-10-14 Thread Naresh Bhatia
Thanks so much Wendy. That is exactly what I was looking for. Naresh -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Saturday, October 14, 2006 11:34 AM To: Maven Users List Subject: Re: How to unpack a zip file into a source directory On 10/14/06, Naresh Bhatia

getting a plugin's own version?

2006-10-14 Thread pjungwir
Hello, Is there an easy way for a plugin to get its own version? I can't just do a property set to ${project.version}, because that will get the version of the user's project. So far, the easiest thing I've come up with is to write ${project.version} to a filtered resource file, but that seems

Re: getting a plugin's own version?

2006-10-14 Thread pjungwir
By the way, what are the get/setPluginContext methods on AbstractMojo for? When I look in the Map, it is empty. Is this a way to pass information to your plugin from the plugin's pom? Maybe I could use this for what I want. -- View this message in context:

can plugins use other plugins?

2006-10-14 Thread pjungwir
Hello, Is it possible for a plugin to tell maven that other plugins must be run prior to itself? All I see for this is the @execute goal annotation. But if I do that, how do I pass configuration to that goal? Can I set it up in the plugin, or does the user have to set it up? Can specify two

Re: getting a plugin's own version?

2006-10-14 Thread pjungwir
Hi Dan, you're coding on a Saturday, too? dan tran wrote: use project to browse the user pom which for sure has your plugin. I was hoping nobody would suggest this! :-) But I'm giving it a try. I get all the artifacts via project.getPluginArtifacts(). But when I find my own, I can only

Re: getting a plugin's own version?

2006-10-14 Thread pjungwir
pjungwir wrote: I see that ArtifactVersion (from getSelectedVersion()) has the major/minor numbers. Do I have to patch these together myself? Actually, these are all set to zero -- View this message in context:

Re: getting a plugin's own version?

2006-10-14 Thread Dan Tran
since your plugin is defined in project--build--plugins, I would suggest to use that browse it thru a api as well. On 10/14/06, pjungwir [EMAIL PROTECTED] wrote: pjungwir wrote: I see that ArtifactVersion (from getSelectedVersion()) has the major/minor numbers. Do I have to patch these

Re: getting a plugin's own version?

2006-10-14 Thread pjungwir
Oh, that is much better! Thank you. -- View this message in context: http://www.nabble.com/getting-a-plugin%27s-own-version--tf2443270.html#a6813179 Sent from the Maven - Users mailing list archive at Nabble.com. - To

Re: How to unpack a zip file into a source directory

2006-10-14 Thread Naresh Bhatia
Wendy, Quick question. It seems that the dependency-maven-plugin does not recognize the .zip extension. I had to change the extension to .jar to make the plugin work. Is my understanding correct? Thanks. Naresh -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent:

Problem overriding profile

2006-10-14 Thread Naresh Bhatia
I have a multi-project with several properties defined in an active profile in the root pom: profiles profile idlocal/id activation activeByDefaulttrue/activeByDefault /activation properties

Re: How to unpack a zip file into a source directory

2006-10-14 Thread Wendy Smoak
On 10/14/06, Naresh Bhatia [EMAIL PROTECTED] wrote: Wendy, Quick question. It seems that the dependency-maven-plugin does not recognize the .zip extension. I had to change the extension to .jar to make the plugin work. Is my understanding correct? You can use the type element to tell the

RE: How to unpack a zip file into a source directory

2006-10-14 Thread Naresh Bhatia
Perfect! That worked like a charm. Thanks again Wendy. Naresh -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Saturday, October 14, 2006 10:32 PM To: Maven Users List Subject: Re: How to unpack a zip file into a source directory On 10/14/06, Naresh Bhatia [EMAIL

xstream missing pom?

2006-10-14 Thread pjungwir
Hello, I'm trying to use xstream 1.1.3 by thoughtworks in my project. It is here: http://repo1.maven.org/maven2/com/thoughtworks/xstream/xstream/1.1.3/ I can get the dependency all right, but I get a warning every time I compile because the pom isn't there: Downloading:

Re: xstream missing pom?

2006-10-14 Thread Dan Tran
http://jira.codehaus.org/browse/MEV On 10/14/06, pjungwir [EMAIL PROTECTED] wrote: Hello, I'm trying to use xstream 1.1.3 by thoughtworks in my project. It is here: http://repo1.maven.org/maven2/com/thoughtworks/xstream/xstream/1.1.3/ I can get the dependency all right, but I get a warning