SquirrelJME/SquirrelJME

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

Summary

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

description = "This provides an implementation which is used " +
    "to access cellular networks."
version = rootProject.version

squirreljme
{
    javaDocErrorCode = "DH"
    swmType = JavaMEMidletType.API
    swmName = "MEEP Cellular Networking"
    swmVendor = "Stephanie Gawroriski"
    definedStandards += new JavaMEStandard("microedition.cellular;;")
    tags += "meep"
}

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