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.
.
.
.
<build>
<plugins>
<plugin>
<groupId>org.molyb.automation.maven</groupId>
<artifactId>molybdenum-maven-plugin</artifactId>
<version>1.0.2beta1</version>
<configuration>
<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>
.
.
.
<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
Issues fixed