This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
language-java.cabal
56 lines (48 loc) · 1.81 KB
/
language-java.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
Name: language-java
Version: 0.2.9
License: BSD3
License-File: LICENSE
Author: Niklas Broberg
Maintainer: Vincent Hanquez <[email protected]>
Category: Language
Synopsis: Java source manipulation
Description: Manipulating Java source: abstract syntax, lexer, parser, and pretty-printer.
Homepage: http://github.com/vincenthz/language-java
Stability: Experimental
Build-Type: Simple
Cabal-Version: >= 1.8
Extra-Source-Files:
tests/java/good/*.java
tests/java/bad/*.java
Language/Java/Lexer.x
source-repository head
type: git
location: git://github.com/vincenthz/language-java
Library
Build-Tools: alex >= 3.1.3
Build-Depends: base >= 4 && < 5
, array >= 0.1
, pretty >= 1.0
, parsec >= 3.0
if impl(ghc < 7.6)
Build-Depends: syb
ghc-options: -Wall -fwarn-tabs -fno-warn-missing-signatures
Exposed-modules: Language.Java.Lexer,
Language.Java.Syntax,
Language.Java.Parser,
Language.Java.Pretty
Other-modules: Language.Java.Syntax.Types
Language.Java.Syntax.Exp
Test-Suite test-java-parse
type: exitcode-stdio-1.0
hs-source-dirs: tests
Main-is: Tests.hs
Build-Depends: base >= 3 && < 5
, mtl
, tasty
, tasty-quickcheck
, tasty-hunit
, language-java
, filepath
, directory
ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures