This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
ScriptCraft/scriptcraft/settings.gradle.kts

18 lines
345 B
Plaintext
Raw Normal View History

2020-04-25 13:33:17 +00:00
pluginManagement {
repositories {
jcenter()
maven {
2020-05-25 21:21:56 +00:00
name = "Fabric"
url = uri("https://maven.fabricmc.net/")
2020-04-25 13:33:17 +00:00
}
2020-05-31 17:25:16 +00:00
maven {
url = uri("https://maven.thebrokenrail.com/")
}
2020-04-25 13:33:17 +00:00
gradlePluginPortal()
}
}
2020-05-25 21:21:56 +00:00
rootProject.name = "ScriptCraft"
2020-05-31 17:25:16 +00:00
includeBuild("../plugin")