Rename unzip tool.
[SquirrelJME.git] / modules / meep-lui / build.gradle
blob53b4b987977f9ee6bf668f0a11fc2947441813f4
1 import cc.squirreljme.plugin.swm.JavaMEMidletType
2 import cc.squirreljme.plugin.swm.JavaMEStandard
4 description = "This contains the base support for the line " +
5         "based interface."
6 version = rootProject.version
8 squirreljme
10         javaDocErrorCode = "DA"
11         swmType = JavaMEMidletType.API
12         swmName = "MEEP Line Based Interface"
13         swmVendor = "Stephanie Gawroriski"
14         definedStandards += new JavaMEStandard("microedition.lui;;")
15         tags += "meep"
16         tags += "graphics"
17         
18         // If this is available, provide the LCDUI implementation of LUI for
19         // non-terminal based applications
20         optionalDependencies += project(":modules:meep-lui-lcdui")
23 dependencies
25         api project(":modules:cldc-compact")
27         api project(":modules:collections")
28         api project(":modules:gcf")
29         api project(":modules:meep-key")