build: 注释掉 Gitea 私服配置

- 注释掉了 config/repositories.gradle.kts 文件中的 Gitea 私服配置代码块
- 保留了阿里云 Maven 仓库的配置
This commit is contained in:
gewuyou 2025-06-22 19:57:46 +08:00
parent 05ab150b8e
commit d980363a33

View File

@ -2,12 +2,11 @@
repositories {
mavenLocal()
val host = System.getenv("GITEA_HOST")
host?.let {
maven{
url = uri("http://${host}/api/packages/gewuyou/maven")
isAllowInsecureProtocol = true
}
}
// host?.let {
// maven{
// url = uri("${host}/api/packages/gewuyou/maven")
// }
// }
maven {
url = uri("https://maven.aliyun.com/repository/public/")
}