packages feed

jvm-0.1.2: jvm.cabal

name:                jvm
version:             0.1.2
synopsis:            Call JVM methods from Haskell.
description:         Please see README.md.
homepage:            http://github.com/tweag/inline-java/tree/master/jvm#readme
license:             BSD3
license-file:        LICENSE
author:              Tweag I/O
maintainer:          m@tweag.io
copyright:           2015-2016 EURL Tweag.
category:            FFI, JVM, Java
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md

source-repository head
  type: git
  location: https://github.com/tweag/inline-java
  subdir: jvm

library
  hs-source-dirs: src
  exposed-modules:
    Language.Java
  build-depends:
    base >= 4.7 && < 5,
    bytestring >=0.10,
    distributed-closure >=0.3,
    jni >= 0.1,
    singletons >= 2.0,
    text >=1.2,
    vector >=0.11
  default-language: Haskell2010

test-suite spec
  type:
    exitcode-stdio-1.0
  hs-source-dirs: tests
  main-is: Main.hs
  other-modules:
    Language.JavaSpec
    Spec
  build-depends:
    base,
    bytestring,
    hspec,
    jvm,
    text
  default-language: Haskell2010
  extra-libraries: pthread