Files
CardinalCooperativeCapitali…/settings.gradle
TermiNexus 2bd90bdb50
Some checks failed
build / build (push) Has been cancelled
初始化上传
2026-07-24 11:36:23 +08:00

59 lines
1.3 KiB
Groovy

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'