SquirrelJME/SquirrelJME

View on GitHub
modules/tool-classfile/build.gradle

Summary

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

description = "This contains support for reading class files."
version = rootProject.version

squirreljme
{
    javaDocErrorCode = "JC"
    swmType = JavaMEMidletType.LIBRARY
    swmName = "Class File Reader"
    swmVendor = "Stephanie Gawroriski"
    tags += "compiler"
    tags += "deprecated-for-autumncoat"
    
    // For testing only
    testSystemProperties.put("dev.shadowtail.classfile.xlate.debug", "true")
    noParallelTests = true
}

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

    api project(":modules:collections")
    api project(":modules:io")
}