I tried including the following in my POM file.

 <build> 
        <plugins> 

            [...] 

            <!-- Checkstyle plugin --> 
            <!-- cf. 
http://maven.apache.org/plugins/maven-checkstyle-plugin/howto.html --> 
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId> 
                <artifactId>maven-checkstyle-plugin</artifactId> 
                <version>2.1</version> 
                <executions> 
                    <execution> 
                        <id>checkstyle</id> 
                        <phase>pre-site</phase> 
                        <goals> 
                            <goal>checkstyle</goal> 
                        </goals> 
                    </execution> 
                </executions> 
            </plugin> 

            <!-- FindBugs plugin --> 
            <!-- cf. http://mojo.codehaus.org/findbugs-maven-plugin/ --> 
            <plugin> 
                <groupId>org.codehaus.mojo</groupId> 
                <artifactId>findbugs-maven-plugin</artifactId> 
                <version>1.0-SNAPSHOT</version> 
                <executions> 
                    <execution> 
                        <id>findbugs</id> 
                        <phase>pre-site</phase> 
                        <goals> 
                            <goal>findbugs</goal> 
                        </goals> 
                    </execution> 
                </executions> 
                <configuration> 
                    <xmlOutput>true</xmlOutput> 
                </configuration> 
            </plugin> 

            <!-- PMD plugin --> 
            <!-- cf. 
http://maven.apache.org/plugins/maven-pmd-plugin/index.html --> 
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId> 
                <artifactId>maven-pmd-plugin</artifactId> 
                <executions> 
                    <execution> 
                        <id>pmd</id> 
                        <phase>pre-site</phase> 
                        <goals> 
                            <goal>pmd</goal> 
                            <goal>cpd</goal> 
                        </goals> 
                    </execution> 
                </executions> 
                <configuration> 
                    <!-rulesets> 
                        <ruleset>${basedir}/src/main/pmd/your-pmd-rules.xml 
</ruleset> 
                    </rulesets--> 
                    <linkXref>true</linkXref> 
                    <targetJdk>1.5</targetJdk> 
                    <format>xml</format> 
                </configuration> 
            </plugin> 

            <!-- Cobertura Report                      --> 
            <!-- cf. 
http://maven-plugins.sourceforge.net/maven-cobertura-plugin/ --> 
            <plugin> 
              <groupId>org.codehaus.mojo</groupId> 
              <artifactId>cobertura-maven-plugin</artifactId> 
              <executions> 
                <execution> 
                  <id>cobertura</id> 
                  <phase>pre-site</phase> 
                  <goals> 
                    <goal>cobertura</goal> 
                 </goals> 
                  <configuration> 
                    <formats> 
                      <format>xml</format> 
                      <format>html</format> 
                   </formats> 
                 </configuration> 
               </execution> 
             </executions> 
           </plugin> 
        </plugins> 
    </build> 

    <reporting> 
        <plugins> 

            [...] 

            <!-- QALab Report --> 
            <!-- cf. 
http://qalab.sourceforge.net/multiproject/maven2-qalab-plugin/faq.html --> 
             <plugin> 
                <groupId>net.objectlab</groupId> 
                <artifactId>mvn-qalab-plugin</artifactId> 
                <version>2.2</version> 
                <reportSets> 
                  <reportSet> 
                    <reports> 
                        <report>report-merge-chart</report> 
                        <report>report-movers-all</report> 
                    </reports> 
                  </reportSet> 
                </reportSets> 
                <configuration> 
                    <dateOnly>true</dateOnly> 
                    <startTimeHoursOffset>50</startTimeHoursOffset> 
                </configuration> 
            </plugin> 

            <!-- Cobertura Report                      --> 
            <!-- cf. 
http://maven-plugins.sourceforge.net/maven-cobertura-plugin/ --> 
            <plugin> 
                   <groupId>org.codehaus.mojo</groupId> 
                   <artifactId>cobertura-maven-plugin</artifactId> 
                   <version>2.1-SNAPSHOT</version> 
            </plugin> 

            <!-- Checkstyle Report                 --> 
            <!-- cf. 
http://maven.apache.org/plugins/maven-checkstyle-plugin/customize.html --> 
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId> 
                <artifactId>maven-checkstyle-plugin</artifactId> 
                <version>2.1</version> 
            </plugin> 

            <!-- PMD Report                        --> 
            <!-- cf. 
http://maven.apache.org/plugins/maven-pmd-plugin/howto.html --> 
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId> 
                <artifactId>maven-pmd-plugin</artifactId> 
                <configuration> 
                    <targetjdk>1.5</targetjdk> 
                    <!--rulesets> 
                        <ruleset>${basedir}/src/main/pmd/your-pmd-rules.xml 
</ruleset> 
                    </rulesets--> 
                    <format>xml</format> 
                    <linkXref>true</linkXref> 
                    <sourceEncoding>iso-8859-1</sourceEncoding> 
                    <minimumTokens>100</minimumTokens> 
                </configuration> 
            </plugin> 
         </plugins> 
    </reporting> 
  
Still, the QALab main report index page is blank.  I dont get its reports
also.  Other reports like checkstyle, PMD, find-bugs, etc., works fine.

Thanks,
Suchitra
-- 
View this message in context: 
http://www.nabble.com/QALab-Main-Report-showing-a-blank-index-page-tf3839891s177.html#a10872172
Sent from the Maven - Users mailing list archive at Nabble.com.


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

Reply via email to