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

30 lines
534 B
Text
Raw Permalink Normal View History

2023-07-30 16:00:37 +02:00
rootProject.name = "lighteco-parent"
sequenceOf(
"api",
2023-07-30 16:00:37 +02:00
"common",
"paper",
"sponge-8",
"currency-money",
"test"
2023-07-30 16:00:37 +02:00
).forEach {
include("lighteco-$it")
project(":lighteco-$it").projectDir = file(it)
2023-07-30 17:04:46 +02:00
}
sequenceOf(
"paper"
).forEach {
include("lighteco-test-$it")
project(":lighteco-test-$it").projectDir = file("test/$it")
}
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
maven("https://repo.jopga.me/releases")
}
2023-08-27 13:59:35 +02:00
}