forked from tweag/inline-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjvm.cabal
More file actions
78 lines (74 loc) · 1.63 KB
/
Copy pathjvm.cabal
File metadata and controls
78 lines (74 loc) · 1.63 KB
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
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
name: jvm
version: 0.1.0
synopsis: Call JVM from Haskell
description: Please see the README.
category: Bindings
author: Tweag
maintainer: Tweag
copyright: Tweag
license: BSD-2-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
library
exposed-modules:
Language.Java
Language.Java.Unsafe
Language.Java.Internal
other-modules:
Paths_jvm
autogen-modules:
Paths_jvm
hs-source-dirs:
src/common
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -j4 -O2
build-depends:
base
, bytestring
, choice
, constraints
, distributed-closure
, exceptions
, jni
, linear-base
, singletons
, template-haskell
, text
, vector
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Language.JavaSpec
Spec
Paths_jvm
autogen-modules:
Paths_jvm
hs-source-dirs:
tests
ghc-options: -threaded -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -j4 -O2
build-depends:
QuickCheck
, base
, bytestring
, choice
, constraints
, distributed-closure
, exceptions
, hspec
, jni
, jvm
, linear-base
, quickcheck-text
, singletons
, template-haskell
, text
, vector
default-language: Haskell2010