Commit before fixing what I just figured out: the hosted environment is pulling in...
[SquirrelJME.git] / modules / squirrel-quarrel / build.gradle
blob63c8fa82ad004a9c79941183d62780877b5684cf
1 import cc.squirreljme.plugin.swm.JavaMEMidlet
2 import cc.squirreljme.plugin.swm.JavaMEMidletType
4 description = "A turn based strategy involving squirrels and " +
5  "lots of acorns! Keep on your claws and horde them all!"
6 version = rootProject.version
8 squirreljme
10         javaDocErrorCode = "BE"
11         swmType = JavaMEMidletType.APPLICATION
12         swmName = "Squirrel Quarrel"
13         swmVendor = "Stephanie Gawroriski"
14         midlets += new JavaMEMidlet("Squirrel Quarrel", "icon.xpm",
15                 "dev.shadowtail.squirrelquarrel.MainMidlet")
16         tags += "games"
17         tags += "demo"
18         
19         // This game is currently incomplete so hide it in the launcher
20         ignoreInLauncher = true
23 dependencies
25         api project(":modules:cldc-compact")
27         api project(":modules:midp-lcdui")
28         api project(":modules:meep-midlet")