pluginManagement { repositories { // 阿里云镜像 maven { name = 'Aliyun' url = 'https://maven.aliyun.com/repository/central' } maven { name = 'AliyunPublic' url = 'https://maven.aliyun.com/repository/public' } // 腾讯云镜像 maven { name = 'Tencent' url = 'https://mirrors.cloud.tencent.com/nexus/repository/maven-public/' } // Fabric 官方源 maven { name = 'Fabric' url = 'https://maven.fabricmc.net/' } mavenCentral() gradlePluginPortal() } } dependencyResolutionManagement { repositories { // 阿里云镜像 - 用于通用依赖 maven { name = 'Aliyun' url = 'https://maven.aliyun.com/repository/central' } maven { name = 'AliyunPublic' url = 'https://maven.aliyun.com/repository/public' } // 腾讯云镜像 maven { name = 'Tencent' url = 'https://mirrors.cloud.tencent.com/nexus/repository/maven-public/' } // Modrinth 镜像 - 用于 Minecraft 模组相关依赖 maven { name = 'Modrinth' url = 'https://api.modrinth.com/maven' } // Fabric 官方源 - 用于 Fabric 相关依赖 maven { name = 'Fabric' url = 'https://maven.fabricmc.net/' } mavenCentral() } } // Should match your modid rootProject.name = 'cardinal-cooperative-capitalism-market-economy'