packages feed

libjenkins-0.2.0.0: libjenkins.cabal

name:                libjenkins
version:             0.2.0.0
synopsis:            Jenkins API interface
description:         Jenkins API interface. It supports REST and Discovery APIs
license:             BSD3
license-file:        LICENSE
author:              Matvey Aksenov
maintainer:          matvey.aksenov@gmail.com
category:            Network
build-type:          Simple
extra-source-files:
  README.md
  CHANGELOG.md
  examples/Jobs.hs
  examples/Rename.hs
  examples/Discover.hs
cabal-version:       >= 1.10

library
  default-language:  Haskell2010
  hs-source-dirs:    src
  exposed-modules:
    Jenkins.Discover
    Jenkins.REST
    Jenkins.REST.Internal
    Jenkins.REST.Lens
    Jenkins.REST.Method
  build-depends:
      async         >= 2.0
    , base          >= 4.5 && < 5
    , bytestring    >= 0.9
    , conduit       >= 1.0
    , data-default  >= 0.5
    , free          >= 4.1
    , http-conduit  >= 2.0 && < 2.1
    , http-types    >= 0.8
    , lens          >= 3.9
    , monad-control >= 0.3
    , network       >= 2.4
    , text          >= 0.11
    , transformers  >= 0.3
    , xml-conduit   >= 1.1
    , xml-lens      >= 0.1

test-suite doctests
  default-language:  Haskell2010
  type:              exitcode-stdio-1.0
  build-depends:
      base == 4.*
    , directory
    , doctest
    , filepath
  hs-source-dirs:    tests
  main-is:           Doctests.hs

source-repository head
  type:     git
  location: https://github.com/supki/libjenkins

source-repository this
  type:     git
  location: https://github.com/supki/libjenkins
  tag:      0.2.0.0