Antoehr thing that is worrying here is that you are copying resources out of the target directory. I assume this is because you have preprocessed something else in some way into target, and are then copying that into target/classes via a resource.
If you really need to do this, I'd actually use a copy task rather than a resource, because other things may stop working that try to use resources without a prereq on java:compile. - Brett > -----Original Message----- > From: Sean Timm [mailto:[EMAIL PROTECTED] > Sent: Friday, 24 October 2003 11:04 AM > To: Maven Developers List > Subject: RE: POM Build Resources and Path Problems > > > It's set in the java:compile preGoal of the parent project > this project is inherited from. The problem is that there > are other things using this variable that remain consistent > across projects, so I want to be able to use the variable > here, too. Having to rely on the basedir form eliminates > consistency across projects... >
