SquirrelJME/SquirrelJME

View on GitHub
modules/markdown-writer/build.gradle

Summary

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

description = "This project contains a formatted markdown " +
    "writer which allows documents to be written to a standard stream yet " +
    "have state on which properties to apply to the output."
version = rootProject.version

squirreljme
{
    javaDocErrorCode = "CG"
    swmType = JavaMEMidletType.LIBRARY
    swmName = "Markdown Writer"
    swmVendor = "Stephanie Gawroriski"
    tags += "extra"
}

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