On Thu, May 8, 2008 at 6:29 PM, Tawfik, Sameh E <[EMAIL PROTECTED]> wrote:
> I placed the following code in the parent pom.xml file. When I run "mvn > -Dmaven.test.skip=true site", maven executes the code in the pre-site > phase, but it never executes the code in the post-site phase? See: http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html#Lifecycle_Reference (and scroll down a bit). The site lifecycle has the following phases: pre-site, site, post-site, site-deploy By typing 'mvn site' you are telling it to run up to and including the 'site' phase. So nothing bound to the post-site or site-deploy phases is going to happen. Type 'mvn post-site' instead and it should work. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
