Hi all,
I have a strange behavior when I try to deploy my site.
I have a multi module project something like that :
project
|-- module1
'-- module2
In my parent pom.xml I defined the site distributionManagement like that :
<distributionManagement>
<site>
<id>my_id</id>
<name>my name</name>
<url>scp://server/var/www/project</url>
</site>
</distributionManagement>
First I launch a mvn clean site:stage -DstagingDirectory=E:\test and the
generated site was ok.
But when I launch mvn clean site-deploy my generated site is bad.
In fact the module link is broken.
I use maven-2.0.8 with maven-site-plugin:2.0-beta-6
Can you help me please ?
Guillaume