forked from Nike-Inc/bartlett
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
88 lines (88 loc) · 1.74 KB
/
package.yaml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: bartlett
version: '1.6.0'
synopsis: The Jenkins command-line tool to serve your needs.
description: Please see README.md
category: CLI
author: Fernando Freire
maintainer: fernando.freire@nike.com
copyright: 2016-Present Nike, Inc.
license: BSD3
github: Nike-inc/bartlett
default-extensions:
- OverloadedStrings
dependencies:
- base >=4.7 && <5
- bytestring
library:
source-dirs: src
ghc-options:
- -Wall
- -fwarn-tabs
- -fwarn-unused-imports
- -fwarn-missing-signatures
- -fwarn-name-shadowing
- -fwarn-incomplete-patterns
exposed-modules:
- Bartlett.Types
- Bartlett.Util
- Bartlett.Parsers
- Bartlett.Network
- Bartlett.Configuration
- Bartlett.Actions.Info
- Bartlett.Actions.Build
- Bartlett.Actions.Config
- Bartlett.Actions.Artifact
- Bartlett.Actions.Log
dependencies:
- aeson
- aeson-pretty
- case-insensitive
- configurator
- filepath
- http-client
- http-types
- lens
- lens-aeson
- mtl
- optparse-applicative
- text
- transformers
- uri-bytestring
- wreq
executables:
bartlett:
main: app/Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
ld-options:
- -optl-static
- -optl-pthread
dependencies:
- bartlett
- keyring
- mtl
- optparse-applicative
tests:
bartlett-test:
main: Tasty.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- aeson
- bartlett
- either-unwrap
- hspec
- http-types
- lens
- smallcheck
- tasty
- tasty-discover
- tasty-hspec
- tasty-smallcheck
- uri-bytestring
- wreq