Re: doxia - xdoc - style and class attributes get removed - SOLVED

2009-06-29 Thread Bernhard Grünewaldt
Hi, It is working very well. Since I am going to use xhtml to its extend I will send you feedback if I run into problems. But for now everything I complained about works. thank you very much for your help :) Bernhard Lukas Theussl schrieb: Excellent, thanks for the confirmation! Some people

Re: passing through -D params from CLI to other plugins

2009-06-29 Thread Stephen Connolly
yes, but that is a fixed list what I was suggesting was as well as a fixed list, an optional regex to mark properties for inclusion on the list. -Stephen 2009/6/29 Brian Fox bri...@infinity.nu: You can configure properties to be passed on in the surefire configuration. On Fri, Jun 26,

Re: bug? strange resolution of commons-logging dependency

2009-06-29 Thread Lucas Bergman
Jörg Schaible wrote: Lucas Bergman wrote: Running this test with Maven 2.1.0 fails: java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory [ ... ] The POM for htmlunit 2.5 declares commons-logging 1.1.1 as a (compile-scope) dependency, so this seems wrong.

[ANN] Maven PDF Plugin 1.0 Released

2009-06-29 Thread Lukas Theussl
The Maven team is pleased to announce the release of the Maven PDF Plugin, version 1.0. This plug-in allows you to generate a PDF version of your project's documentation. http://maven.apache.org/plugins/maven-pdf-plugin/ You should specify the version in your project's plugin

Re: Maven - Property files Question

2009-06-29 Thread David Weintraub
There are two issues I addressed in my previous email: Issue #1: How do you prevent those properties files from being packaged inside your jarfile, and Issue #2: How to make those properties files available as a release product. Let's start with Issue #1: Preventing your jar file from containing

How to run a goal only for a particular project in a multimodule project ?

2009-06-29 Thread ksachdeva
Hi, I have a project structure such as this parent-dir a-maven-proj1 a-maven-proj2 pom.xml pom.xml in parent-dir is a parent pom.xml which include a-maven-proj1 and a-maven-proj2 as modules. If I run mvn test in parent-dir this goal is executed for both the modules and I am happy.

tools.jar

2009-06-29 Thread McElroy Sean
Hello, I'm getting this error: java.lang.ClassNotFoundException: com.sun.mirror.apt.AnnotationProcessorFactory, when I try to compile a web-service project using jaxws-maven-plugin. I understand that this problem relates to tools.jar. So having read the FAQ on the Maven site I added this to my

Re: tools.jar

2009-06-29 Thread Roman Kournjaev
Hi You ll probably will get rid of this error if you run will have the JDK , instaead of the JRE in your PATH. Check your JAVA_HOME , it should always point to a JDK when working with maven. The tools.jar is already inside the jdk in its the lib folder. Roman On Mon, Jun 29, 2009 at 6:29 PM,

RE: How to run a goal only for a particular project in a multimodule project ?

2009-06-29 Thread Edelson, Justin
You would have to build that logic into your plugin. You could do this with a skip parameter which would be set to true in a-maven-proj2 or by adding some code which determines that a-maven-proj2 isn't an appropriate target for the plugin. Justin -Original Message- From: ksachdeva

RE: tools.jar

2009-06-29 Thread McElroy Sean
Hello, My JAVA_HOME variable points to: C:\Program Files\Java\jdk1.6.0_06 Regards, Seam -Original Message- From: Roman Kournjaev [mailto:kournj...@gmail.com] Sent: 29 June 2009 16:36 To: Maven Users List Subject: Re: tools.jar Hi You ll probably will get rid of this error if you

Question on buildnumber-maven-plugin and inherited properties

2009-06-29 Thread Paul Giblock
Hello everyone, I have been a Maven user for a few months now. I haven't tried to do anything out of the ordinary. So far our setup is basic, a parent-pom and 7 sub- projects. We've recently realized the need to add buildNumbers (from Subversion) to our builds. Unfortunately, this does us

Re: bug? strange resolution of commons-logging dependency

2009-06-29 Thread Jörg Schaible
Lucas Bergman wrote at Montag, 29. Juni 2009 15:25: Jörg Schaible wrote: Lucas Bergman wrote: Running this test with Maven 2.1.0 fails: java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory [ ... ] The POM for htmlunit 2.5 declares commons-logging 1.1.1

Re: tools.jar

2009-06-29 Thread Roman Kournjaev
Hi I had this problem a few times. Its definitely a jdk problem. check your mvn -version , verify it takes the right java home. C:\Documents and Settings\rkournjamvn -version Maven version: 2.0.9 Java version: 1.5.0_18 OS name: windows xp version: 5.1 arch: x86 Family: windows C:\Documents and

Re: How does maven handle artifact's license files?

2009-06-29 Thread David Hoffer
Hum, I just got around to trying this plugin. I got exactly *zero *licenses in the created output licenses folder. Are you sure this plugin scans transitive dependencies? I see a list of WARNING it generates for those it cannot find valid licenses but I have many more dependencies than this

Re: bug? strange resolution of commons-logging dependency

2009-06-29 Thread Lucas Bergman
Jörg Schaible wrote: Lucas Bergman wrote: Jörg Schaible wrote: Lucas Bergman wrote: Running this test with Maven 2.1.0 fails: java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory [ ... ] The POM for htmlunit 2.5 declares commons-logging

RE: How to run a goal only for a particular project in a multimodule project ?

2009-06-29 Thread ksachdeva
Thanks Justin, Problem is that the plugin is not written by me. Is it correct to say that this a problem with the plugin, it should have ignored the projects it does not understand !! Is it correct to say that in maven there is no way to tell that run goal for specific module in a multimodule

Re: How to run a goal only for a particular project in a multimodule project ?

2009-06-29 Thread Rusty Wright
If you specify the plugin only in the sub module then won't it only run there? For example, in my parent pom I list the plugin with pluginManagement plugins plugin groupIdorg.codehaus.mojo/groupId

[ANN] Selenium Maven Plugin 1.0 Released

2009-06-29 Thread Brett Porter
The team at the Codehaus Mojo project are please to announce the release of the Selenium Maven plugin 1.0. Documentation on the plugin can be found here: http://mojo.codehaus.org/selenium-maven-plugin/ RELEASE NOTES (since 1.0-rc-1) ** Bug * [MSELENIUM-20] - Starting the selenese goal using

SCM SVN Provider fails on Windows with cygwin/svn because of C:/ prefix

2009-06-29 Thread Ovidiu Feodorov
I know this is not a new problem, I found several JIRA issues related to it (SCM-213 http://jira.codehaus.org/browse/SCM-213, for example), all reported Resolved, but yet I am using Maven SCM 1.2 and the 2.0 Beta 9 release plug-in and , and I am still seeing it. This is what happens in my

Re: two versions of a compiler

2009-06-29 Thread Alexy Khrabrov
OK, so here's the issue of maintaining two project versions for two versions of Scala, which produce incompatible classes. I decided to deploy them separately -- Scala 2.7.x will produce versions such as 2.7.5-1.0, and under Scala 2.8.x, I'll have 2.8.0-1.0. So, in my pom, at least those things