custom src directory layout - how to get it to not checkstyle/javadoc the tests too.

2006-03-10 Thread David Sag
Hi All, I am beginning now to migrate many of our projects to maven 2, but I am not permitted to move the location of the stuff in the src directory as CVS is unable to retain the history in this case and we have no plans to move to something more useful such as subversion. the directory structu

Re: custom src directory layout - how to get it to not checkstyle/javadoc the tests too.

2006-03-10 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, > the directory structure we have is > > pom.xml > src/ > - org/ Maven uses src/java/... per default. Have you tried that? Regards Thorsten -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2.1 (MingW32) iD8DBQFEEXUbQvObkgCcDe0RAurvAJ9R6yQps

Re: custom src directory layout - how to get it to not checkstyle/javadoc the tests too.

2006-03-10 Thread Wayne Fay
Easiest answer is to move to Subversion. There are tools to facilitate this so you can save your history out of CVS. Then restructure your project. Wayne On 3/10/06, Thorsten Heit <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi, > > > the directory structure

Re: custom src directory layout - how to get it to not checkstyle/javadoc the tests too.

2006-03-14 Thread David Sag
Thorsten Heit <[EMAIL PROTECTED]> wrote on 10-03-2006 13:46:19: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi, > > > the directory structure we have is > > > > pom.xml > > src/ > > - org/ > > Maven uses src/java/... per default. Have you tried that? > unfortunately I do not have p

Re: custom src directory layout - how to get it to not checkstyle/javadoc the tests too.

2006-03-14 Thread Stephen Duncan
The M2 standards are src/main/java and src/test/java: http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html Only mentioning because I saw src/java listed by someone as the Maven default... -Stephen On 3/14/06, David Sag <[EMAIL PROTECTED]> wrote: > Thorst

Re: custom src directory layout - how to get it to not checkstyle/javadoc the tests too.

2006-03-14 Thread David Sag
"Wayne Fay" <[EMAIL PROTECTED]> wrote on 10-03-2006 18:00:22: > Easiest answer is to move to Subversion. There are tools to facilitate > this so you can save your history out of CVS. > easier said than done here I am afraid. certainly that's what I have done for all of my personal and freelanc

Re: custom src directory layout - how to get it to not checkstyle/javadoc the tests too.

2006-03-14 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > The M2 standards are src/main/java and src/test/java: > http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html > > Only mentioning because I saw src/java listed by someone as the Maven > default... Erm, yes,