Make it so mapping files are used and then reapplied.
[SquirrelJME.git] / modules / meep-midlet / build.gradle
blob7e3aaca279378fe25753c783516c95ef4a05c3cb
1 import cc.squirreljme.plugin.swm.JavaMEMidletType
2 import cc.squirreljme.plugin.swm.JavaMEStandard
4 description = "This contains the MIDlet interface which " +
5         "acts as the main entry point for all MIDlets."
6 version = rootProject.version
8 squirreljme
10         javaDocErrorCode = "AD"
11         swmType = JavaMEMidletType.API
12         swmName = "MEEP MIDlet Interface"
13         swmVendor = "Stephanie Gawroriski"
14         definedStandards += new JavaMEStandard("microedition.midlet;;")
15         tags += "meep"
16         tags += "required"
19 dependencies
21         api project(":modules:cldc-compact")
22         
23         api project(":modules:collections")