build(llmhub-base): 更新 Gewuyou 私有仓库地址- 移除动态主机名配置,使用固定 IP 地址- 优化 Maven 仓库配置,提高构建稳定性

This commit is contained in:
gewuyou 2025-04-28 18:21:00 +08:00
parent 05a2a78dfd
commit d4bfcba538

View File

@ -26,13 +26,10 @@ allprojects {
}
repositories {
mavenLocal()
val host = System.getenv("GEWUYOU_GITEA_HOST")
host?.let {
maven {
url = uri("http://${host}/api/packages/gewuyou/maven")
url = uri("http://49.235.96.75:3001/api/packages/gewuyou/maven")
isAllowInsecureProtocol = true
}
}
maven {
url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev")
}