Re: POM interpolation problem in maven-2.0.3

2006-03-29 Thread Emmanuel Venisse
it0088 test ${project.build.directory} and it works fine Emmanuel dan tran a écrit : http://jira.codehaus.org/browse/MNG-2186 On 3/28/06, Carlos Sanchez [EMAIL PROTECTED] wrote: Confirmed :( 2.0.3 = project.build.directory:target 2.0.2 = project.build.directory:C:\Documents and

Re: POM interpolation problem in maven-2.0.3

2006-03-29 Thread Emmanuel Venisse
${project.build.directory} works fine, it's only the echo result that's strange. Add this after the echo : mkdir dir=${project.build.directory}/ touch file=${project.build.directory}/${project.artifactId}.txt/ and create a child project of your pom with the

Re: POM interpolation problem in maven-2.0.3

2006-03-29 Thread dan tran
you are right about mkdir, how ever my surefire configuration the usage of ${project.build.directory}, so this issue is valid I am sure this issue will hit other usages -D On 3/29/06, Emmanuel Venisse [EMAIL PROTECTED] wrote: ${project.build.directory} works fine, it's only the echo result

Re: POM interpolation problem in maven-2.0.3

2006-03-29 Thread Carlos Sanchez
Dan, an it test would be great if you have an example that behaves different on 2.0.2 and 2.0.3 On 3/30/06, dan tran [EMAIL PROTECTED] wrote: you are right about mkdir, how ever my surefire configuration the usage of ${project.build.directory}, so this issue is valid I am sure this issue

POM interpolation problem in maven-2.0.3

2006-03-28 Thread dan tran
my maven-2.0.3 shows ${project.build.directory}=target. Instead of the fullpath this surely breaks the reactor build/test. Does any one encounter the same problem? -D

Re: POM interpolation problem in maven-2.0.3

2006-03-28 Thread Brett Porter
If that is the case, that is certainly bad - but I know we've had that regression before, and I thought there were tests in to enforce it, so I'd like to see a test case... - Brett On 3/29/06, dan tran [EMAIL PROTECTED] wrote: my maven-2.0.3 shows ${project.build.directory}=target. Instead of

Re: POM interpolation problem in maven-2.0.3

2006-03-28 Thread dan tran
here you go, single pom would do ?xml version=1.0? project modelVersion4.0.0/modelVersion !-- parent groupIdtest/groupId artifactIdparent/artifactId version1.0-SNAPSHOT/version /parent -- packagingjar/packaging groupIdtest/groupId artifactIdchild/artifactId

Re: POM interpolation problem in maven-2.0.3

2006-03-28 Thread Carlos Sanchez
Confirmed :( 2.0.3 = project.build.directory:target 2.0.2 = project.build.directory:C:\Documents and Settings\csanchez\Local Settings\Temp\target You know what to do next, don't you? ;) On 3/29/06, dan tran [EMAIL PROTECTED] wrote: here you go, single pom would do ?xml version=1.0? project

Re: POM interpolation problem in maven-2.0.3

2006-03-28 Thread dan tran
http://jira.codehaus.org/browse/MNG-2186 On 3/28/06, Carlos Sanchez [EMAIL PROTECTED] wrote: Confirmed :( 2.0.3 = project.build.directory:target 2.0.2 = project.build.directory:C:\Documents and Settings\csanchez\Local Settings\Temp\target You know what to do next, don't you? ;) On