22 lines
389 B
Kotlin
22 lines
389 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("com.github.johnrengelman.shadow") version "6.1.0"
|
|
}
|
|
|
|
group = "space.blokk.testplugin"
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":blokk-api"))
|
|
}
|
|
|
|
tasks {
|
|
shadowJar {
|
|
archiveFileName.set("TestPlugin.jar")
|
|
destinationDirectory.set(file("../serverData/plugins"))
|
|
}
|
|
}
|