mirror of
https://github.com/xHyroM/lighteco.git
synced 2024-11-09 17:18:05 +01:00
670f2b5dbd
* GitHub CI (Untested) * Fix * Remove BukkitTest for now due to missing gradle plugin * Readd Bukkit Test * build: add plugins repo * ci: build currency-money --------- Co-authored-by: Jozef Steinhübl <xhyrom.hyro@gmail.com>
22 lines
405 B
Text
22 lines
405 B
Text
rootProject.name = "lighteco-parent"
|
|
|
|
sequenceOf(
|
|
"api",
|
|
"common",
|
|
"bukkit",
|
|
"bukkittest",
|
|
"sponge-8",
|
|
"currency-money"
|
|
).forEach {
|
|
include("lighteco-$it")
|
|
project(":lighteco-$it").projectDir = file(it)
|
|
}
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven("https://repo.jopga.me/releases")
|
|
}
|
|
}
|