1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
name: tasty-ant-xml
version: 1.1.9
synopsis: Render tasty output to XML for Jenkins
description: A tasty ingredient to output test results in XML, using the Ant schema. This XML can be consumed by the Jenkins continuous integration framework.
homepage: http://github.com/ocharles/tasty-ant-xml
license: BSD3
license-file: LICENSE
author: Oliver Charles
maintainer: ollie@ocharles.org.uk
copyright: Oliver Charles 2013
category: Testing
build-type: Simple
cabal-version: >=1.10
extra-source-files: Changelog.md
library
exposed-modules: Test.Tasty.Runners.AntXML
build-depends:
base >= 4.5 && < 5,
ghc-prim,
containers >= 0.4.2.0,
generic-deriving >= 1.6.2,
mtl >= 2.1.2,
stm >= 2.4.2,
tagged >= 0.7,
tasty >= 1.4 && < 1.6,
transformers >= 0.3.0.0,
directory >= 1.2.3.0,
filepath >= 1.0.0,
xml >= 1.3.13
default-language: Haskell98
ghc-options: -Wall -O2
|