2022-06-19 10:21:41 +00:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
maven("https://maven.minecraftforge.net")
|
|
|
|
maven("https://maven.parchmentmc.org")
|
|
|
|
}
|
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
|
|
|
if (requested.id.id == "org.spongepowered.mixin") {
|
|
|
|
useModule("org.spongepowered:mixingradle:${requested.version}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-22 20:09:08 +00:00
|
|
|
val mcVersion: String by settings
|
|
|
|
rootProject.name = "cc-tweaked-$mcVersion"
|
2022-11-04 21:41:59 +00:00
|
|
|
|
|
|
|
include(":core-api")
|
2022-11-04 22:31:56 +00:00
|
|
|
include(":core")
|
2022-11-06 15:07:13 +00:00
|
|
|
|
|
|
|
include(":mc-stubs")
|
|
|
|
include(":forge-stubs")
|
|
|
|
include(":common-api")
|
|
|
|
include(":forge-api")
|
|
|
|
|
2022-11-09 18:58:31 +00:00
|
|
|
include(":lints")
|
2022-11-06 13:37:07 +00:00
|
|
|
include(":web")
|
2022-11-04 21:41:59 +00:00
|
|
|
|
|
|
|
for (project in rootProject.children) {
|
|
|
|
project.projectDir = file("projects/${project.name}")
|
|
|
|
}
|