SquirrelJME/SquirrelJME

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

Summary

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

description = "This provides support for provisioning new " +
    "MIDlets and LIBlets which may exist on the network and can be seen in " +
    "a way as a remote application downloader and installer except by a " +
    "more concrete means. It is possible for applications to automatically " +
    "be updated."
version = rootProject.version

squirreljme
{
    javaDocErrorCode = "DM"
    swmType = JavaMEMidletType.API
    swmName = "MEEP Provisioning"
    swmVendor = "Stephanie Gawroriski"
    definedStandards += new JavaMEStandard("microedition.provisioning;;")
    tags += "meep"
}

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