grails4 数据库迁移插件报错

Database migration plugin error in grails4

我正在开发 grails 项目版本 4

每当我 运行 项目或执行 gradle 构建或清理

我收到以下错误

> Could not resolve all artifacts for configuration ':classpath'.
   > Could not find org.grails.plugins:database-migration:3.1.0.BUILD-SNAPSHOT.
     Searched in the following locations:
       - https://repo.grails.org/grails/core/org/grails/plugins/database-migration/3.1.0.BUILD-SNAPSHOT/maven-metadata.xml
       - https://repo.grails.org/grails/core/org/grails/plugins/database-migration/3.1.0.BUILD-SNAPSHOT/database-migration-3.1.0.BUILD-SNAPSHOT.pom
       - https://repo.grails.org/grails/core/org/grails/plugins/database-migration/3.1.0.BUILD-SNAPSHOT/database-migration-3.1.0.BUILD-SNAPSHOT.jar
     Required by:
         project :

似乎所有插件回购 return 404 现在,示例:

不确定发生了什么,但如果您使用的是 grails 3+,您可以尝试将 https://grails.jfrog.io/grails/core 添加到您的存储库闭包中(作为临时修复),如下所示:

repositories {
  mavenLocal()
  maven { url "https://repo.grails.org/grails/core" }
  maven { url "https://grails.jfrog.io/grails/core"}
}

虽然我想知道官方回购发生了什么,也许从 grails 的人那里听到这件事。 我希望他们至少能尽快解决它,因为用我们的旧 grails 2 应用程序修复它并不容易。

https://grails.jfrog.io/grails/core

使用 grails 4 对我有用!谢谢! 我希望 repo.grails.org-伙计们能尽快解决这个问题。

他们临时解决了“https://repo.grails.org/grails/core”的问题。

link 将转发到包含所有存储库的“https://repo.grails.org/artifactory/core/”。

祝你好运!