Correct spelling.
[SquirrelJME.git] / modules / tool-classfile / build.gradle
blob5363034aca4ba1220a6e54f398662128cf537f46
1 import cc.squirreljme.plugin.swm.JavaMEMidletType
3 description = "This contains support for reading class files."
4 version = rootProject.version
6 squirreljme
8         javaDocErrorCode = "JC"
9         swmType = JavaMEMidletType.LIBRARY
10         swmName = "Class File Reader"
11         swmVendor = "Stephanie Gawroriski"
12         tags += "compiler"
13         tags += "deprecated-for-autumncoat"
14         
15         // For testing only
16         testSystemProperties.put("dev.shadowtail.classfile.xlate.debug", "true")
17         noParallelTests = true
20 dependencies
22         api project(":modules:cldc-compact")
24         api project(":modules:collections")
25         api project(":modules:io")