SquirrelJME/SquirrelJME

View on GitHub
modules/meep-key/build.gradle

Summary

Maintainability
Test Coverage
import cc.squirreljme.plugin.swm.JavaMEMidletType
import cc.squirreljme.plugin.swm.JavaMEStandard

description = "This contains classes for handling key and other " +
    "user input events."
version = rootProject.version

squirreljme
{
    javaDocErrorCode = "DB"
    swmType = JavaMEMidletType.API
    swmName = "MEEP Key Events"
    swmVendor = "Stephanie Gawroriski"
    definedStandards += new JavaMEStandard("microedition.key;;")
    tags += "meep"
}

dependencies
{
    api project(":modules:cldc-compact")
}