Scripts/lom/build.gradle.kts

19 lines
393 B
Plaintext
Raw Normal View History

2022-10-06 19:30:52 +02:00
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")
}