Hello,
I ran into some problem using maven-surefire-report-plugin. I want to
use this plugin to format a report which is custom generated by
another plugin. I did the following:

<?xml version="1.0" encoding="UTF-8"?>
<project  xmlns="http://maven.apache.org/POM/4.0.0"; 
  <build>
  <plugins>
   <plugin>
    <groupId>net.courtanet</groupId>
    <artifactId>maven-benefit-mozunit-plugin</artifactId>
    <configuration>
     <testFile>${basedir}/../tests/core</testFile>
    </configuration>    
   </plugin>
   <plugin>
    <artifactId>maven-surefire-report-plugin</artifactId>
   </plugin>   
  </plugins>
 </build>
</project>

but nothing get generated with $> mvn site 

The following doesn't work either:

<?xml version="1.0" encoding="UTF-8"?>
<project  xmlns="http://maven.apache.org/POM/4.0.0"; 
  <build>
  <plugins>
   <plugin>
    <groupId>net.courtanet</groupId>
    <artifactId>maven-benefit-mozunit-plugin</artifactId>
    <configuration>
     <testFile>${basedir}/../tests/core</testFile>
    </configuration>    
   </plugin>
  </plugins>
 </build>
 <reporting>
  <plugins>
   <plugin>
    <artifactId>maven-surefire-report-plugin</artifactId>
   </plugin>   
  </plugins>
 </reporting>
</project>

When I do 

$> mvn surefire-report:report

My HTML report get generated but without meaningful decoration.

I also tried configure surefire-plugin to use goal report-only,
without success.

I would be happy if someone could shed some light on this small issue.

Best regards,
-- 
Arnaud Bailly, PhD
OQube - Software Engineering
http://www.oqube.com


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

Reply via email to