X-Git-Url: https://git.brokenzipper.com/gitweb?p=chaz%2Fsbt-tap;a=blobdiff_plain;f=readme.md;fp=readme.md;h=0000000000000000000000000000000000000000;hp=ea900b86d27ec0ad347b3ac9ee8bec85507bb08a;hb=9435e96901b26a2c52e40a3ea7a993634b746c8b;hpb=7b47de44e98f157ae5edae5ceafa5249cebe3cfd diff --git a/readme.md b/readme.md deleted file mode 100644 index ea900b8..0000000 --- a/readme.md +++ /dev/null @@ -1,21 +0,0 @@ -Provides reporting of test success and failure for tests run by -[simple build tool](https://github.com/harrah/xsbt) -in [TAP](http://en.wikipedia.org/wiki/Test_Anything_Protocol) format - -All the test results will be generated in one file: test-results/test.tap - -To use - -1. Add this plugin to your sbt project. Create project/project/Plugins.scala that looks like this: - - import sbt._ - // sets up other project dependencies when building our root project - object Plugins extends Build { - lazy val root = Project("root", file(".")) dependsOn(tapListener) - lazy val tapListener = RootProject(uri("git://github.com/mkhettry/sbt-tap.git")) - } - -2. In your build.sbt, add the SbtTapListener to the sequence of Test Listeners. - - testListeners += SbtTapReporting.tapListener -