SquirrelJME/SquirrelJME

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

Summary

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

description = "This contains the implementation of the " +
    "record management system which is used to manage records whichmay be " +
    "used instead of the filesystem (if a filesystem is notsupported)."
version = rootProject.version

squirreljme
{
    javaDocErrorCode = "DC"
    swmType = JavaMEMidletType.API
    swmName = "MEEP Record Management System"
    swmVendor = "Stephanie Gawroriski"
    definedStandards += new JavaMEStandard("microedition.rms;;")
    tags += "meep"
    tags += "j2me"
}

dependencies
{
    api project(":modules:cldc")

    api project(":modules:meep-midlet")
    api project(":modules:tool-manifest-writer")
    api project(":modules:meep-swm")
    api project(":modules:collections")
}