I'm using the following:
C:\projects>mvn -version
Maven version: 2.0.7
Java version: 1.6.0_02-ea
OS name: "windows xp" version: "5.1" arch: "x86"
I've a parent pom.xml and a number of sub modules, when I run the
following command from the parent pom.xml level:
mvn site
Maven generates the target\site folder at the parent and sub modules
folders, for example:
C:\projects\target\site\index.html
C:\projects\mbpa-eclipse\plugins\com.abc.mc.api\target\site\index.html
When I click on C:\projects\target\site\index.html, the list of the
modules is displayed, but when I click on any one of them, the following
message is displayed: "Internet Explorer cannot display the webpage"
I checked the contents of the parent C:\projects\target\site\index.html
file, and I found out that Maven is not specifying the correct path
value to the modules index.html file as follow:
<h5>Modules</h5>
<ul>
<li class="none">
<a
href="mbpeclipse/plugins/com.abc.mc.api/index.html">com.abc.mc.api</a></
li>
The correct value should be:
----------------------------
<h5>Modules</h5>
<ul>
<li class="none">
<a href="
C:/projects/mbpa-eclipse/plugins/com.abc.mc.api/target/site/index.html">
com.abc.mc.api</a></li>
Is there is a fix to this problem? Does anyone know?
Thanks,
Sameh
This email and any files transmitted with it are confidential, proprietary
and intended solely for the individual or entity to whom they are addressed.
If you have received this email in error please delete it immediately.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]