SquirrelJME/SquirrelJME

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

Summary

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

description = "This contains the MIDlet interface which " +
    "acts as the main entry point for all MIDlets."
version = rootProject.version

squirreljme
{
    javaDocErrorCode = "AD"
    swmType = JavaMEMidletType.API
    swmName = "MEEP MIDlet Interface"
    swmVendor = "Stephanie Gawroriski"
    definedStandards += new JavaMEStandard("microedition.midlet;;")
    tags += "meep"
    tags += "required"
}

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