repo.grails.org - 证书已过期
repo.grails.org - cert expired
无法再构建我的项目,因为回购证书已过期。我试过使用 --offline 但它似乎仍然试图达到 url 但失败了。对替代方案有任何想法吗?
build.gradle...
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
我遇到了同样的问题,解决方法是在 build.gradle 文件
中使用 http 而不是 https
buildscript {
repositories {
mavenLocal()
maven { url "http://repo.grails.org/grails/core" }
}
....
}
repositories {
mavenLocal()
maven { url "http://repo.grails.org/grails/core" }
}
已在此处报告,请查看报告以获取进度信息:https://github.com/grails/grails-core/issues/11082
您可以临时将 https 更改为 http,但请务必在证书问题解决后尽快恢复该更改。
无法再构建我的项目,因为回购证书已过期。我试过使用 --offline 但它似乎仍然试图达到 url 但失败了。对替代方案有任何想法吗?
build.gradle...
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
我遇到了同样的问题,解决方法是在 build.gradle 文件
中使用 http 而不是 httpsbuildscript {
repositories {
mavenLocal()
maven { url "http://repo.grails.org/grails/core" }
}
....
}
repositories {
mavenLocal()
maven { url "http://repo.grails.org/grails/core" }
}
已在此处报告,请查看报告以获取进度信息:https://github.com/grails/grails-core/issues/11082
您可以临时将 https 更改为 http,但请务必在证书问题解决后尽快恢复该更改。