In a multi-module Maven project, what could make the parent project not to be a part of the reactor?

2014-08-07 Thread Behrang Saeedzadeh
I was just reading the source code for the [Versions Maven Plugin]( http://mojo.codehaus.org/versions-maven-plugin/), and noticed this snippet of code: if ( reactorProjects.contains( getProject().getParent() ) ) { getLog().info( Project's parent is part of the reactor );

Re: In a multi-module Maven project, what could make the parent project not to be a part of the reactor?

2014-08-07 Thread Behrang Saeedzadeh
* etc Many reasons On 7 August 2014 12:29, Behrang Saeedzadeh behran...@gmail.com wrote: I was just reading the source code for the [Versions Maven Plugin]( http://mojo.codehaus.org/versions-maven-plugin/), and noticed this snippet of code: if ( reactorProjects.contains

Re: Multiple single-module projects vs one multi-module project

2011-09-27 Thread Behrang Saeedzadeh
Thanks for affirming this Ron. By the way, how do you ensure that all those projects depend on the same set of external dependences without duplicating the information for each POM? Cheers, Behrang Saeedzadeh http://www.behrang.org On Tue, Sep 27, 2011 at 2:17 AM, Ron Wheeler rwhee...@artifact

Multiple single-module projects vs one multi-module project

2011-09-26 Thread Behrang Saeedzadeh
repository compared to one large monolithic repo. 2- new developers can be exposed only to the subset of projects that they need to work with 3- finer grained security over which developers can see which parts of the project Thanks in advance, Behrang -- Cheers, Behrang Saeedzadeh http://www.behrang.org

Using TestNG with Maven

2009-03-04 Thread Behrang Saeedzadeh
Hi, When creating a new Maven project using archetype:create maven by default uses JUnit as the unit testing framework. Is it possible to override this on the command line to use TestNG instead? Thanks in advance, Behrang -- View this message in context:

Re: Using TestNG with Maven

2009-03-04 Thread Behrang Saeedzadeh
is to switch the dependency to testng. - Brett On 05/03/2009, at 2:54 PM, Behrang Saeedzadeh wrote: Hi, When creating a new Maven project using archetype:create maven by default uses JUnit as the unit testing framework. Is it possible to override this on the command line to use TestNG

Re: Using TestNG with Maven

2009-03-04 Thread Behrang Saeedzadeh
/dependency Adding these dependency things to your pom.xml file is a regular activity. Also see http://www.exist.com/better-build-maven http://www.sonatype.com/book/reference/public-book.html Behrang Saeedzadeh wrote: Are there any alternatives to the archetype plugin

Re: Using TestNG with Maven

2009-03-04 Thread Behrang Saeedzadeh
That was my reply to Rusty's message. Otherwise, this is what I replied to Brett: Are there any alternatives to the archetype plugin for creating projects, that either use TestNG or let users choose TestNG on the commandline? After which came the Brett's reply that you quoted. :-) Cheers,

Re: WELCOME to users@maven.apache.org

2005-12-18 Thread Behrang Saeedzadeh
Hi, How can I exclude certain JAR files (like those that are only needed during unit testing, say TestNG JARs, or for code generation, like XDoclet) from being added to my distribution ZIP file? -- Science is a differential equation. Religion is a boundary limit - Alan Turing Behrang Saeedzadeh