Merge from trunk.
[SquirrelJME.git] / modules / json / build.gradle
blob8168dce5c863a168d0f30254498b262cf9aad5ee
1 import cc.squirreljme.plugin.swm.JavaMEMidletType
3 // JavaDoc for the API, it is essentially JSR353 but without support for
4 // BigDecimal and BigInteger.
5 // https://docs.oracle.com/javame/config/cldc/opt-pkgs/api/json/api/index.html
7 description = "Contains an implementation of the JSON API for CLDC."
8 version = rootProject.version
10 squirreljme
12         javaDocErrorCode = "JS"
13         swmType = JavaMEMidletType.API
14         swmName = "JSON API"
15         swmVendor = "Stephanie Gawroriski"
16         tags += "json"
19 dependencies
21         api project(":modules:cldc-compact")
22         
23         api project(":modules:collections")
24         api project(":modules:io")