✨ Convert build scripts to Kotlin
Also added some new tasks to only build/install to maven local certain platforms `buildMinecraft`, `installMinecraft`, `buildDiscord`, `installDiscord`, `buildIRC`, `installIRC`
This commit is contained in:
parent
d812ea633a
commit
2c188eb130
48 changed files with 519 additions and 499 deletions
|
|
@ -1,7 +0,0 @@
|
|||
dependencies {
|
||||
api project(':cloud-bukkit')
|
||||
compileOnly "com.destroystokyo.paper:paper-api:${vers['paper-api']}"
|
||||
compileOnly "com.destroystokyo.paper:paper-mojangapi:${vers['paper-api']}"
|
||||
compileOnly "org.jetbrains:annotations:${vers['jb-annotations']}"
|
||||
compileOnly "com.google.guava:guava:${vers['guava']}"
|
||||
}
|
||||
7
cloud-minecraft/cloud-paper/build.gradle.kts
Normal file
7
cloud-minecraft/cloud-paper/build.gradle.kts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
dependencies {
|
||||
api(project(":cloud-bukkit"))
|
||||
compileOnly("com.destroystokyo.paper", "paper-api", vers["paper-api"])
|
||||
compileOnly("com.destroystokyo.paper", "paper-mojangapi", vers["paper-api"])
|
||||
compileOnly("org.jetbrains", "annotations", vers["jb-annotations"])
|
||||
compileOnly("com.google.guava", "guava", vers["guava"])
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue