Re: [M2] Is there a variable for the source folder?

2006-03-27 Thread Brett Porter
The ./src folder isn't special. It just happens to be a common root. ${basedir}/src will get you exactly that, but if someone sets my-stuff/java, it won't affect that. HTH, Brett On 3/27/06, Michael Meyer <[EMAIL PROTECTED]> wrote: > Hi > is there a variable for the source folder? > > ${project.

[M2] Is there a variable for the source folder?

2006-03-26 Thread Michael Meyer
Hi is there a variable for the source folder? ${project.build.sourceDirectory} returns "my-app/src/main/java" I noticed that I can use ${user.dir}/src but this would break if somebody uses an other src folder. Or is the src folder immutable in M2. That would also solve my problem :-) Cheers, mi