RE: functionnal testing

2006-01-21 Thread BURGHARD Éric
Vincent Massol wrote: waitfalse/wait I tryed cargo but saw no differences with a jetty6:run since it was never returning. Thanks for the tip. Regards. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Is there some M1 documentation that is also interesting for M2?

2006-01-21 Thread softwarearchitekt
Hi, i know this page, and the book is already in my library, but is it relevant for m2? Fredy Maven Users List users@maven.apache.org schrieb am 21.01.06 01:40:59: Hi Fredy, You can access Maven 1 documentation at http://maven.apache.org/maven-1.x/ Check out also this book - Maven: A

Re: Worst documentation in the whole apache projects

2006-01-21 Thread softwarearchitekt
Hi, the dokumentation is realy not so bad! But in my opinion there's missing an Overview, an index of contents. For Maven beginner, it is very difficult to become an overview! The documentation is a bit unmanageable. I often have problems an i know i've read about it, but i can't find the

Re: [m2] multiple project's component dependency declaration possible or too complex?

2006-01-21 Thread Loïc Lefèvre
exactly ! With maven, we can put multiple artifacts in the same directory (because we can directly specify the jar filename in the dependency). Wouldn't it be cool to be able to do that again (in very extrem cases of course)? Loic On 1/20/06, Edwin Punzalan [EMAIL PROTECTED] wrote: I think

Re: Best Practice - Maven with WSAD or RAD6

2006-01-21 Thread Jeffrey Bonevich
We are doing this with both WSAD and RAD with minimal problems using Maven 1.0.2. I wrote a maven.xml script that we run to copy all jar files into the EAR project for development, and declare dependencies in the EAR project's project.xml that get them included in the build for runtime. The

RE: Best Practice - Maven with WSAD or RAD6

2006-01-21 Thread Mike Perham
You don't say if you are using M1 or M2. For M2, we did the following to get things working with RSA6: WAR plugin config: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-war-plugin/artifactId

Re: java.lang.VerifyError using maven 2

2006-01-21 Thread Valerio Schiavoni
can you be sure you run a mvn clean compile ? are you using some instrumentation tool ? On 1/20/06, Shukla, Sanjay [EMAIL PROTECTED] wrote: Hey Guys, I am in a terrible situation compiling my code with maven 2 produces a java.lang.VerifyError when the code runs. However using my

[m202] Ant based maven plugin problem

2006-01-21 Thread Guo, Jiaqi
I used to work on a maven project with several java goals and ant goals. It worked fine on maven 2.0.1 and maven 2.0.2-SNAPSHOT which I checked out from svn maven-2.0.x and manually built before 2.0.2 was released. After I switch the maven to 2.0.2 released version, it throws exception on mvn

[m2] is introduction to the pom completed?

2006-01-21 Thread Fredy
i don't understand the document! What would it say to me? Fredy - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m2] multiple project's component dependency declaration possible or too complex?

2006-01-21 Thread Wendy Smoak
On 1/20/06, Jim Babka [EMAIL PROTECTED] wrote: Well, this is interesting. I ran into the issue of needing multiple build artifacts from a single project, and even though I theorized that this was not possible, no one either agreed or disagreed with me at that time. Now this posting agrees

[m2] Dependancy issue with jboss deployment

2006-01-21 Thread Mick Knutson
I have an issue with my ear deployment with JBoss 4.0.3 RC1 Here is my dependancy Management declaration in my parent pom: dependency groupIdaopalliance/groupId

m2.0.2 repository tag error

2006-01-21 Thread Dave Hoffer
I am getting a POM parse error when I add the following section. repository connection scm:starteam:X:[EMAIL PROTECTED]:49201/Components/view /connection developerConnection scm:starteam:X:[EMAIL PROTECTED]:49201/Components/view

Re: Continuum import multimodule project [M2]

2006-01-21 Thread Emmanuel Venisse
Look at logs, you'll obain more infos. Emmanuel [EMAIL PROTECTED] a écrit : I have in every pom.xml file the scm definition in the form: scm connectionscm:svn:http://username:[EMAIL PROTECTED]://servername/svn/xyz_proj_name/trunk/connection /scm When I try to Add Maven

Re: dist goal doesn't put sources into src package

2006-01-21 Thread Craig L Russell
Hi Gesbert Amm,The reference to the mavin plugins properties was very useful. For some reason, I couldn't find this page.Thanks,CraigOn Jan 19, 2006, at 1:15 AM, Gisbert Amm wrote:You probably have to set maven.dist.src.archive.dir (in project.properties or at the commandline).See

Re: Best Practice - Maven with WSAD or RAD6

2006-01-21 Thread Sanjay Choudhary
Hi Mike, Thanks a lot. Currently, I am trying to make our existing application to use Maven 2, both in build and development env. Great that you have already done so. Please help me by answering some more questions below :- 1. I downloaded the new version for WAR plug in. Build and used

Re: m2.0.2 repository tag error

2006-01-21 Thread John Casey
I think you want the scm/ tag. See: http://maven.apache.org/maven-model/maven.html#class_scm -john Dave Hoffer wrote: I am getting a POM parse error when I add the following section. repository connection scm:starteam:X:[EMAIL PROTECTED]:49201/Components/view

Re: [m202] Ant based maven plugin problem

2006-01-21 Thread John Casey
Looks like you need to get the latest maven-plugin-plugin version. You can do this by issuing the following on your plugin project: mvn -U package The -U flag will force an update check for the plugin-plugin. HTH, john Guo, Jiaqi wrote: I used to work on a maven project with several java

Re: Best Practice - Maven with WSAD or RAD6

2006-01-21 Thread Sanjay Choudhary
Hi Mike, For 1, I have put jar dependency as default (compile) and option = true. Manifest.mf is generated fine. But please validate if this is fine. For 2, I have use ANT - my POM has something like this plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-antrun-plugin/artifactId