1
0
Fork 0
mirror of https://github.com/xHyroM/lighteco.git synced 2024-09-19 21:03:18 +02:00
lighteco/settings.gradle.kts
Saturn 670f2b5dbd
ci: add build workflow (#3)
* 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>
2023-09-02 21:13:24 +02:00

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")
}
}