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