plugins { id("jf.plugin-conventions") } gradlePlugin { // Define the plugin plugins { create("lom") { id = "lom" implementationClass = "io.gitlab.jfronny.lom.LomPlugin" } } } dependencies { api(project(":convention")) api("net.fabricmc:fabric-loom:1.0-SNAPSHOT") api("gradle.plugin.com.github.johnrengelman:shadow:7.1.2") }