Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to generate TestNG XSLT report using the Maven setup for selenium Tests.

http://code.google.com/p/testng-xslt/

I have configured the pom file with Maven plugin specified as above, but I am always getting plugin not found error. I am getting default TestNT report and not the XSLT report with chart.

Pom.xml used for the Test

<modelVersion>4.0.0</modelVersion>
<groupId>uk.co.newsint.acs.admin.test</groupId>
<artifactId>ACS</artifactId>
<packaging>jar</packaging>
<version>1.0</version>

<dependencies>

    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>6.1.1</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.25.0</version>
    </dependency>
</dependencies>

<pluginRepositories>
    <pluginRepository>
        <id>testng-xslt-plugin</id>
        <url>http://www.cosminaru.ro/maven/</url>
    </pluginRepository>
</pluginRepositories>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.4</version>
           <configuration>
                 <testFailureIgnore>true</testFailureIgnore>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.5</source>
                <target>1.5</target>
            </configuration>
        </plugin>
    </plugins>
</build>

<reporting>
    <plugins>
        <plugin>
            <groupId>org.testng.xslt</groupId>
            <artifactId>testng-xslt-plugin</artifactId>
            <version>1.1</version>
            <configuration>
                <showRuntimeTotals>true</showRuntimeTotals>
                <sortTestCaseLinks>true</sortTestCaseLinks>
                <testDetailsFilter>FAIL,PASS,SKIP,CONF</testDetailsFilter>
            </configuration>
        </plugin>
    </plugins>
</reporting>

share|improve this question

1 Answer

First why are you using such an old maven-surefire-plugin version? Current version is 2.12.4...Furthermore you shouldn't define repositories into your pom better use a repository manager instead. Based on the documentation your definition of the repository is wrong. It should be:

<pluginRepositories>
   <pluginRepository>
       <id>testng-xslt-plugin</id>
       <url>http://uhftopic.com/maven/</url>
   </pluginRepository>
</pluginRepositories>

BTW: How have you called maven? mvn site to get the new reports ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.