Access Keys:
Skip to content (Access Key - 0)
Log in (Access Key - 5)



Toggle Sidebar

Features 1.0.2beta1

Download and Install

Molybdenum Maven Plugins can be obtained from our Maven repo.
Current version is 1.0.2beta1.

For ANT download the molybdenum-env-1.0.2beta1.jar

Feature tour

XUnit XML Report

Molybdenum molybdenum-maven-plugin has a new goal to create XUnit XML report files like Maven surefire does or the Ant junit-report does as well. Such report files can be read by many CI Servers like Hudson or Bamboo to create history information and trend reports.

Maven Example
.
   .
   .

  <build>
    <plugins>
      <plugin>
        <groupId>org.molyb.automation.maven</groupId>
        <artifactId>molybdenum-maven-plugin</artifactId>
        <version>1.0.2beta1</version>
        <configuration>
                <!--- The xml report file generated by the molybdenum-maven-plugin -->
        	<reportfile>${project.build.directory}/molybdenum/report.html.xml</reportfile>

        	<targetdir>${project.build.directory}/xunit-reports</targetdir>
  		</configuration>
        <executions>
            <execution>
            	<phase>test</phase>
               <goals>
                <goal>xunit-generate</goal>
              </goals>
            </execution>
        </executions>
      </plugin>
    </plugins>
     .
     .
     .

  </build>
   .
   .
   .
ANT Example
<xunitxml report="build/report.html.xml" targetdir="build/xunit-suite"/>

You have to use the molybdenum-env-1.0.2beta1.jar or higher to get this working.

Overview of improvements and new features

Molybdenum (1 issues)
T Key Summary Status
New Feature AUTO-9 Provide an Ant task and Maven plugin to create XUnit XML reports Resolved

Issues fixed

Molybdenum (2 issues)
T Key Summary Status
Bug AUTO-11 make firefox profile creation work under MacOS Resolved
Bug AUTO-8 schedulebuilder: left out includes or excludes element will bring up an NPE Resolved

last edited on May 17, 2009 14:32
Adaptavist Theme Builder Powered by Atlassian Confluence