18 lines
473 B
Kotlin
18 lines
473 B
Kotlin
plugins {
|
|
id("de.siphalor.smcmtk.plugin")
|
|
}
|
|
|
|
description = "This is the main plugin providing utilities through a Gradle extension."
|
|
|
|
dependencies {
|
|
implementation(libs.gson)
|
|
compileOnly(libs.fabric.loom.remap)
|
|
}
|
|
|
|
gradlePlugin {
|
|
val projectPlugin by plugins.creating {
|
|
id = "de.siphalor.minecraft-modding-toolkit.project-plugin"
|
|
implementationClass = "de.siphalor.minecraft_modding_toolkit.gradle.project_plugin.SmcmtkProjectPlugin"
|
|
}
|
|
}
|