1)  I have a project structure with a parent pom and several modules
beneath it. When I run mvn site from the root (the parent pom dir) it
generates the site index.html file but if I try to click on any of the
module links the URLs are wrong. They try to go to
/path/project/target/site/module/index.html when it needs to go to
/path/project/module/target/site/index.html  What's the best way to
fix this?

2) I can't seem to get the surefire-plugin report link to show up in
any of the main site menus. For example in my ejb-jar module pom.xml I
have:
        <reporting>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-report-plugin</artifactId>
                <version>2.4.2</version>
                                        <configuration>
                                                <suiteXmlFiles>
                                                        
<suiteXmlFile>src/test/config/testng.xml</suiteXmlFile>
                                                </suiteXmlFiles>
                                        </configuration>
              </plugin>
            </plugins>
          </reporting>

When site runs the surefire-reports.html file is created, but it's not
listed as a link in the index.html file, as shown in the diagram in
the docs: 
http://maven.apache.org/plugins/maven-surefire-report-plugin/usage.html
Is there something I need to do to get it show up as a link as shown
in the image?

Thanks

-- 
Rick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to