blob: c6818007e53055a09490233c7051ff3f0a0c4e53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
plugins {
`java-gradle-plugin`
id("com.gradle.plugin-publish") version "1.2.1"
}
dependencies {
api(project(":"))
implementation("com.google.code.gson:gson:2.10.1")
implementation("net.minecraftforge:srgutils:0.4.13")
implementation("cuchaz:enigma-cli:2.4.1")
}
gradlePlugin {
val plugin by plugins.creating {
id = "moe.nea.zwirn"
implementationClass = "moe.nea.zwirn.plugin.ZwirnPlugin"
}
}
|