Split kotlin modules (#316)
This commit is contained in:
parent
762de3dfba
commit
d2a47ad941
17 changed files with 127 additions and 78 deletions
|
|
@ -22,8 +22,9 @@ include(":cloud-services")
|
|||
include(":cloud-tasks")
|
||||
include(":cloud-annotations")
|
||||
|
||||
// Extension Modules
|
||||
include(":cloud-kotlin-extensions")
|
||||
// Kotlin Extensions
|
||||
setupKotlinModule("cloud-kotlin-extensions")
|
||||
setupKotlinModule("cloud-kotlin-coroutines-annotations")
|
||||
|
||||
// Discord Modules
|
||||
setupDiscordModule("cloud-javacord")
|
||||
|
|
@ -59,6 +60,9 @@ fun setupDiscordModule(name: String) =
|
|||
fun setupMinecraftModule(name: String) =
|
||||
setupSubproject(name, file("cloud-minecraft/$name"))
|
||||
|
||||
fun setupKotlinModule(name: String) =
|
||||
setupSubproject(name, file("cloud-kotlin/$name"))
|
||||
|
||||
fun setupExampleModule(name: String) =
|
||||
setupSubproject(name, file("examples/$name"))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue