Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 518 Bytes

File metadata and controls

17 lines (11 loc) · 518 Bytes

sbt-simple-junit-xml-reporter-plugin

A pretty basic plugin for sbt to output junit xml reports from tests.

To use add:

import sbt._

    object Plugins extends Build {
      val reporterPlugin = ProjectRef(new URI("git://github.com/mmarich/sbt-simple-junit-xml-reporter-plugin.git"),
        "sbt-simple-junit-xml-reporter-plugin")
      lazy val plugins = Project("plugins", file(".")).dependsOn(reporterPlugin)
    }

to project/project/Plugins.scala