mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
18 lines
333 B
Kotlin
18 lines
333 B
Kotlin
plugins {
|
|
id("java")
|
|
id("idea")
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
excludeDirs.add(file("src"))
|
|
}
|
|
}
|
|
|
|
version = "2.4.1"
|
|
|
|
tasks.register("publishAllToMavenCentral") {
|
|
dependsOn(":memshell-party-common:publishToMavenCentral")
|
|
dependsOn(":packer:publishToMavenCentral")
|
|
dependsOn(":generator:publishToMavenCentral")
|
|
} |