mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-02-08 15:10:05 +00:00
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
![]() |
// SPDX-FileCopyrightText: 2023 The CC: Tweaked Developers
|
||
|
//
|
||
|
// SPDX-License-Identifier: MPL-2.0
|
||
|
|
||
|
pluginManagement {
|
||
|
// Duplicated in buildSrc/build.gradle.kts
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
gradlePluginPortal()
|
||
|
|
||
|
maven("https://maven.fabricmc.net/") {
|
||
|
name = "Fabric"
|
||
|
content {
|
||
|
includeGroup("fabric-loom")
|
||
|
includeGroup("net.fabricmc")
|
||
|
includeModule("org.jetbrains", "intellij-fernflower")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
maven("https://repo.sleeping.town") {
|
||
|
name = "Voldeloom"
|
||
|
content {
|
||
|
includeGroup("agency.highlysuspect")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
resolutionStrategy {
|
||
|
eachPlugin {
|
||
|
if (requested.id.id == "agency.highlysuspect.voldeloom") {
|
||
|
useModule("agency.highlysuspect:voldeloom:${requested.version}")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
val mcVersion: String by settings
|
||
|
rootProject.name = "cc-tweaked-$mcVersion"
|
||
|
|
||
|
includeBuild("vendor/Cobalt")
|