I'm using the site distribution feature of maven (version 3.0.3) to upload generated content for our projects. It's configured in our pom.xml as such:

<distributionManagement>
    <site>
        <id>OUR_ID_HERE</id>
        <name>PROJECT_NAME</name>
        <url>scp://<host>/<parent folder>/${project.artifactId}</url>
    </site>
</distributionManagement>

It works fine, however I'm noticing that the "Last Published: " portion of the pages is only updated when I physically remove the contents of the target folder. I'm wondering if this is a bug, and if so, would it be possible to configure the maven-site-plugin (version 3.0-beta-3) to clean out the target folder prior to unzipping the uploaded files to work around it?

Any help is greatly appreciated.

link|improve this question
Have you done a mvn clean site site:deploy? – khmarbaise Jul 27 '11 at 13:54
Karl-Heinz, this won't help. Files aren't overwritten in the target. – Michael-O Jul 28 '11 at 7:19
feedback

1 Answer

up vote 0 down vote accepted

This issue has already been reported: http://jira.codehaus.org/browse/MSITE-250

link|improve this answer
Thanks, this really explains what I'm experiencing. Man, I wish that feature is added because it would be very useful. – Jmal Jul 29 '11 at 13:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.