Multiproject and properties inheritence issue ?

2005-04-01 Thread Laurent Petit
Hello, I have a multiproject project which I want to use to run the goal cruisecontrol:configure over all my aggregated projects. Since my multiproject project is also monitored by cruisecontrol, I have some properties of cruisecontrol set in its project.properties file. And I discovered that

Re: Multiproject and properties inheritence issue ?

2005-04-01 Thread =?ISO-8859-1?Q?J=F6rg?= Schaible
Hello Laurent, Laurent Petit wrote: [snip] The multiproject:goal fails, because the maven.cruisecontrol.template is inherited in subprojects from the multiproject project. I don't think this would be the most desired behaviour, would it ? Please tell me if you too think this is more an

maven-jxr-plugin

2005-04-01 Thread Stephen Gray
hi, I have a problem with my jxr plugin. It will generate all the packages and links but the links are wrong. I have a directory structure something like this common jarsrc com

maven javadoc clean prints build failed

2005-04-01 Thread Andrei Szabo
Hi all, I came across a strange bahavior today. It is really simple to reproduce. Just use the followings: a. maven genapp b. maven javadoc clean Now you should have a build failed message along the lines: File.. C:\Documents and

RE: ANT FTP with Maven

2005-04-01 Thread GOKULAM Jayaram
Hi dudes, I have a doubt, why does maven print my ftp code on the console window? The following lines are displayed on my console ftp password=password action=mkdir userid=user1 server=ftp.com.org remotedir=/home/mcone/TEST/ftp My original code in the plugin.jelly is as below, ant:ftp

RE: ANT FTP with Maven

2005-04-01 Thread Kenney Westerhof
On Fri, 1 Apr 2005, GOKULAM Jayaram wrote: Well.. the obvious thing could be that you did not declare the ant namespace prefix. Do you have xmlns:ant=jelly:ant defined? Further, the lines printed do not match the lines in your jelly script. The remotedir is not the same. Either you changed it

RE: ANT FTP with Maven

2005-04-01 Thread GOKULAM Jayaram
Yes Kenney, I have the definition of ant, This is how my plugin.jelly starts with. project xmlns:j=jelly:core xmlns:util=jelly:util xmlns:ant=jelly:ant xmlns:x=jelly:xml Yes you are right I had a trial the second time after changing the directory, and have wrongly pasted it.

RE: ANT FTP with Maven

2005-04-01 Thread GOKULAM Jayaram
That's fine Kenney, Do I just need to add a dependency to upgrade or do I need to do some thing else? I added the following in my project.xml dependency groupIdant/groupId artifactIdant/artifactId version1.6/version

RE: ANT FTP with Maven

2005-04-01 Thread Kenney Westerhof
On Fri, 1 Apr 2005, GOKULAM Jayaram wrote: That won't work. If you want to use maven 1.1-SNAPSHOT, you'll need to build it from source. (I couldn't find a binary distribution, but maybe you can). See http://maven.apache.org/developers/building-from-source.html. But I find it rather unstable at

RE: ANT FTP with Maven

2005-04-01 Thread GOKULAM Jayaram
Kenney, I want to upgrade my ant from 1.5 to 1.6, not the maven snapshot. Can u please let me know what I should do ? Thanks, Jayaram -Original Message- From: Kenney Westerhof [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 4:38 PM To: Maven Users List Subject: RE: ANT FTP with

Cactus test ignoring cactus.test.includes

2005-04-01 Thread James Mitchell
I'm struggling with an issue (as the subject says) and I've tried googling and found a few references, but they all lead to the release notes for 1.7 saying this was an issue, but was fixed. It seems that my setting is being ignored and it is using **/*Test*.class instead. in

maven site

2005-04-01 Thread Stephen Gray
Hi, How does the maven site refresh itself with the latest reports. Is it necessary to deploy the site everytime to refresh it? Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: maven site

2005-04-01 Thread Martijn Dashorst
Stephen Gray wrote: Hi, How does the maven site refresh itself with the latest reports. Is it necessary to deploy the site everytime to refresh it? Yes. But you could use CruiseControl (or a similar product) to do that for you... Martijn

RE: maven site

2005-04-01 Thread Stephen Gray
Im actually using CruiseControl. How would that be implemented? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RESOLVED: RE: ANT FTP with Maven

2005-04-01 Thread Kenney Westerhof
On Fri, 1 Apr 2005, GOKULAM Jayaram wrote: Jayaram, I finally got it to work using maven 1.0.2 / ant 1.5.3-1! It requires a bit of hacking. First, edit maven.xml, and just before your ant:ftp/ tag add this one: taskdef name=ftp

RE: maven site

2005-04-01 Thread Stephen Gray
Thanks very much for that. I have one question though. If you use the goals in maven.xml to deploy the site will they ever be seen? Is cruisecontrol not going to be in a continuous loop? - To unsubscribe, e-mail: [EMAIL

Re: maven site

2005-04-01 Thread Martijn Dashorst
Stephen Gray wrote: Thanks very much for that. I have one question though. If you use the goals in maven.xml to deploy the site will they ever be seen? Is cruisecontrol not going to be in a continuous loop? I don't understand what your concern is here. A goal in a maven.xml is almost the same

Maven/Ant and parallel task

2005-04-01 Thread nusgroup
Hello, I try to use the Ant parallel task with Maven. But the following snippet (of a maven.xml) isn't working: goal name=parallel parallel sleep seconds=5 / sleep seconds=5 / /parallel /goal It always takes over 10 Seconds to run . If I use it with ant:ant

Re: Maven/Ant and parallel task

2005-04-01 Thread Kenney Westerhof
On Fri, 1 Apr 2005 [EMAIL PROTECTED] wrote: See http://maven.apache.org/faq.html#multiple-threads Hello, I try to use the Ant parallel task with Maven. But the following snippet (of a maven.xml) isn't working: goal name=parallel parallel sleep seconds=5 / sleep

Maven/Ant and parallel task

2005-04-01 Thread Volker=20F=FC=DFler
Hello, I try to use the Ant parallel task with Maven. But the following snippet (of a maven.xml) isn't working: goal name=parallel ant:parallel ant:sleep seconds=5 / ant:sleep seconds=5 / /ant:parallel /goal It always takes over 10 Seconds to run . If I use it with

Curious about transitive dependencies

2005-04-01 Thread Matthias Burbach
Hi, I noticed you work on support for so-called transitive dependencies in Maven 2. In the absence of support for it in the current Maven release we developed a solution for this specific to the needs in our projects. Now, I would like to compare your concepts with ours. But it seems to me you

Re: Maven/Ant and parallel task

2005-04-01 Thread nusgroup
Hi, See http://maven.apache.org/faq.html#multiple-threads thank you for your answer! Unfortunately thats not exactly what I'm looking for. I want to use features of the parallel Ant task like threadCount and threadsPerProcessor. any ideas? regards, Volker

seperate src and test directories

2005-04-01 Thread Durham David R Jr Contr 805 CSPTS/SCE
I'd like to have normal class sources in: /src /package/SomeClass.java And tests in: /tests /package/SomeClassTest.java But I don't see a way to specify the source attribute for your tests. Is there a way to do this for the 'test' plugin? Thanks, - Dave

Re: seperate src and test directories

2005-04-01 Thread Steve Molloy
You need to add the tests in your POM, see http://maven.apache.org/start/ten-minute-test.html Steve On Fri, 2005-01-04 at 11:03 -0600, Durham David R Jr Contr 805 CSPTS/SCE wrote: I'd like to have normal class sources in: /src /package/SomeClass.java And tests in: /tests

Where are the reports?

2005-04-01 Thread Seth Milder
Hi, I am rather new to Maven and I am having a bit of an issue with the checkstyle and pmd report generation. I can see that the reports' xml files get generated, but then the transform (e.g., for pmd) never occurs. Here is the output: xdoc:init: xdoc:copy-user-resources: [copy] Copying 1

RE: seperate src and test directories

2005-04-01 Thread Durham David R Jr Contr 805 CSPTS/SCE
You need to add the tests in your POM, see http://maven.apache.org/start/ten-minute-test.html Ok, yeah. Thanks for the help. As you can see, I'm new to Maven. Next question: I want to add a resource to the classpath for tests. Specifically: /resources

RE: maven javadoc clean prints build failed

2005-04-01 Thread Andrei Szabo
I'm running Win XP at work and Win 2000 Pro at home and it happens on both. I will look on Monday to see if it happens on RedHat Linux Enterprise 3.0 that I also run at work. I will gladly open the issue; I just have no clue how to do it:( So just point me in the right direction, anyone here