mirror of
https://github.com/noobnuby/Notification-Bot.git
synced 2024-11-26 05:13:05 +00:00
25 lines
No EOL
293 B
Text
25 lines
No EOL
293 B
Text
plugins {
|
|
kotlin("jvm") version "2.0.20"
|
|
}
|
|
|
|
group = "com.noobnuby.plugin"
|
|
version = "1.0.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
tasks {
|
|
shadowJar {
|
|
doLast {
|
|
copy {
|
|
from(archiveFile)
|
|
into(File("C:\\Users\\user\\Desktop\\px32\\plugins"))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
} |