RE: [m2] variable for ${basedir}/target ?

2006-07-26 Thread Jason.Yankus
Try ${project.build.directory}. -jason -Original Message- From: David J. M. Karlsen [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 26, 2006 11:37 AM To: Maven Users List Subject: [m2] variable for ${basedir}/target ? Hi! Does any variable exist for ${basedir}/target - or is this the

Re: [m2] variable for ${basedir}/target ?

2006-07-26 Thread Alexis Midon
and a variable for the main resource directory? On 7/26/06, David J. M. Karlsen [EMAIL PROTECTED] wrote: Hi! Does any variable exist for ${basedir}/target - or is this the closest I can come? Does there exist a list over variable expressions in maven2 poms? -- David J. M. Karlsen - +47

Re: [m2] variable for ${basedir}/target ?

2006-07-26 Thread Eric Redmond
You can get most (all?) element values from the pom in the form of parameters, nesting by dot notation. for example: project build directoryVALUE/directory is ${project.build.directory} etc. If you want to play with viewing the value of any parameter, try the ant plugin: build

Re: [m2] variable for ${basedir}/target ?

2006-07-26 Thread David J. M. Karlsen
Eric Redmond wrote: You can get most (all?) element values from the pom in the form of parameters, nesting by dot notation. for example: project build directoryVALUE/directory is ${project.build.directory} etc. If you want to play with viewing the value of any parameter, try the ant