You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Mike Bowler <mb...@GargoyleSoftware.com> on 2003/02/14 14:11:21 UTC

Last published date in generated docs

When I look at other sites generated by maven, I see a gray bar 
seperating the logos at the top from the content below.  This gray bar 
has text like "Last published: 09 February 2003 | Doc for 2.0-alpha2".

When I generate my project site using maven (beta8), I get a thin gray 
bar but there is no text on it.  How do I get maven to generate content 
in this bar?

-- 
Mike Bowler
Principal, Gargoyle Software Inc.
Voice: (416) 822-0973 | Email  : mbowler@GargoyleSoftware.com
Fax  : (416) 822-0975 | Website: http://www.GargoyleSoftware.com



Re: Last published date in generated docs

Posted by Ben Walding <de...@walding.com>.
Add this to your project.properties

maven.xdoc.date = left
maven.xdoc.version = ${pom.currentVersion}

Mike Bowler wrote:

> When I look at other sites generated by maven, I see a gray bar 
> seperating the logos at the top from the content below.  This gray bar 
> has text like "Last published: 09 February 2003 | Doc for 2.0-alpha2".
>
> When I generate my project site using maven (beta8), I get a thin gray 
> bar but there is no text on it.  How do I get maven to generate 
> content in this bar?
>



Re: Last published date in generated docs

Posted by Jean-François El Fouly <je...@wanadoo.fr>.
A 08:11 14/02/2003 -0500, vous avez écrit :
>When I look at other sites generated by maven, I see a gray bar seperating 
>the logos at the top from the content below.  This gray bar has text like 
>"Last published: 09 February 2003 | Doc for 2.0-alpha2".
>
>When I generate my project site using maven (beta8), I get a thin gray bar 
>but there is no text on it.  How do I get maven to generate content in 
>this bar?

By writing this in your ~/build.properties or elsewhere :

# Display the date on the Maven web site
maven.xdoc.date = left
# Display the maven version the web site is documenting
maven.xdoc.version = ${pom.currentVersion}


Best regards