import groovy.json.JsonSlurper /* * This buildscript contains tasks related to the validation of each module in fabric api. * * Right now this task verifies each Fabric API module has a module lifecycle specified. * More functionality will probably be added in the future. */ subprojects { // Create the task task validateModules(type: ValidateModuleTask) } /** * Verifies that each module has the required custom values for module lifecycle in it's FMJ. * *
Example: *
{@code * "custom": { * "fabric-api:module-lifecycle": "stable" * } * }*/ class ValidateModuleTask extends DefaultTask { ValidateModuleTask() { group = "verification" // Hook up validation to check task project.tasks.check.dependsOn(this) } @TaskAction void validate() { def json = new JsonSlurper().parse(project.file("src/main/resources/fabric.mod.json") as File) as Map