-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjt.cabal
70 lines (67 loc) · 1.69 KB
/
jt.cabal
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
Name: jt
Version: 0.0.1
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: 2015 Ian O Connell
Author: Ian O Connell
Maintainer: [email protected]
Bug-Reports: https://github.com/ianoc/jt/issues
Synopsis: cmd line for interacting with hadoop 2.x Rest API's/Job Tracker
Description: @jt@ is something
Source-Repository head
Type: git
Location: https://github.com/ianoc/jt
Library
HS-Source-Dirs: src
Build-Depends:
base >= 4.5
, text < 1.3
, optparse-applicative >= 0.11
, aeson >= 0.8.0.2
, split >= 0.2.0
, wreq
, mtl >= 2.2.0
, system-filepath >= 0.4.0.0
, lens
, bytestring
, http-client
, MissingH
, turtle
, containers >= 0.5.6
, attoparsec
, http-types
, time
Exposed-Modules:
Jt
, Jt.Net
, Jt.QueryParameters
, Jt.Server
, Jt.Command.All
, Jt.Command.Show
, Jt.Command.Jobs
Other-Modules:
Jt.Command.Utils
, Jt.App.Info
, Jt.App.Listing
, Jt.Command.Counters
, Jt.Command.Details
, Jt.DetailedJob
, Jt.History.Counters
, Jt.History.Info
, Jt.History.Listing
, Jt.App.Counters
, Jt.Job
, Jt.Utils
, Jt.Counter
GHC-Options: -O2 -Wall
Default-Language: Haskell2010
executable jt
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, bytestring
, jt
default-language: Haskell2010