Hello Lukas, I am using maven 2.2.0. I do not set a specific version for the maven site plugin. So i guess I am using the default version for 2.2.0, whereas I have to admit that I have no idea which version that is.
Is there a way to list the plugins and their version which are used during the build? Something like mvn dependency:list for dependencies. Cheers, Thomas On Mon, Sep 14, 2009 at 10:45 AM, Lukas Theussl <ltheu...@apache.org> wrote: > > Which version of the site plugin / doxia are you using? > > -Lukas > > > Thomas Pawlitzki wrote: >> >> Hello NG, >> >> I am generating my project website using maven and the APT format. >> >> But I have difficulties to include an image into one of my webpages. >> >> I put the image into >> <project>/src/site/resources/images/overview.png >> and refere to it in my APT like >> [./images/overview.png] Overview >> >> I found [1] that says that I should include the extension. >> But it does not work. >> >> When i call >> mvn site >> my target includes the image as expected >> <project>/target/site/images/overview.png >> >> But the html as result from my APT does not include any img tag but looks >> like: >> >> >> <div class="section"><h3>Overview</h3> >> <dl><dt>./images/overview.png</dt> >> <dd>Overview <p>This overview diagram shows ...</p> >> </dd> >> </dl> >> </div> >> >> So also my Text starting with "This overview ..." is shown in a yellow >> box like the path to the image and the image caption. >> >> How can i get the image inclusion right? What am I doing wrong? Can anyone >> help? >> >> Thanks in advance. >> >> Cheers, >> Thomas >> >> >> [1] >> http://maven.apache.org/doxia/references/doxia-apt.html#Figure_extensions >> >