mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2025-01-04 21:37:37 +00:00
23 lines
474 B
Plaintext
23 lines
474 B
Plaintext
|
pluginManagement {
|
||
|
repositories {
|
||
|
gradlePluginPortal()
|
||
|
mavenLocal()
|
||
|
maven("https://repo.papermc.io/repository/maven-public/")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
plugins {
|
||
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
|
||
|
}
|
||
|
|
||
|
rootProject.name = "fork"
|
||
|
|
||
|
val forkApiDir = file("fork-api")
|
||
|
if (forkApiDir.exists()) {
|
||
|
include(forkApiDir.name)
|
||
|
}
|
||
|
val forkServerDir = file("fork-server")
|
||
|
if (forkServerDir.exists()) {
|
||
|
include(forkServerDir.name)
|
||
|
}
|