On Jan 24, 2007, at 2:11 PM, [EMAIL PROTECTED] wrote:
+ <configuration>
+ <modulePlan>${project.build.directory}/
classes/META-INF/geronimo-application.xml</modulePlan>
+ </configuration>
Its better to use "${project.build.outputDirectory}" instead of "$
{project.build.directory}/classes"
Both generally point to the same directory, unless someone configured
the project to use something other than "target/classes", in which
case "${project.build.outputDirectory}" would still be valid, but "$
{project.build.directory}/classes" would not be.
--jason