Archived
1
0
Fork 0
This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
uranos/test-plugin/build.gradle.kts

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"))
}
}