SquirrelJME/SquirrelJME

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

Summary

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

description = "This provides an interface which allows an " +
    "application to receive events from the system along withsending events " +
    "to other running applications."
version = rootProject.version

squirreljme
{
    javaDocErrorCode = "DI"
    swmType = JavaMEMidletType.API
    swmName = "MEEP Event Management"
    swmVendor = "Stephanie Gawroriski"
    definedStandards += new JavaMEStandard("microedition.event;;")
    tags += "meep"
}

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