Grails - 从3.1.9升级到3.2.6

时间:2017-02-19 04:46:26

标签: grails

我正在尝试将应用程序从grails 3.1.9更新到3.2.6但是当我运行grails run-app时出现此错误。

| Error Could not resolve all dependencies for configuration ':profile'. Type 'gradle dependencies' for more information

项目编译成功但在run-app上出错。

我做了gradle dependencies并发现它找不到配置文件依赖项

    profile
\--- :web: -> org.grails.profiles:web:3.2.6 FAILED

但是当我刷新依赖关系时,它就会成功。

1 个答案:

答案 0 :(得分:-1)

使用像这样的配置文件依赖

profile "org.grails.profiles:web"

它将使用grails版本作为此依赖项,例如3.2.6,因此您需要显式设置版本

profile "org.grails.profiles:web:3.2.1"

<强>更新

当intellij中出现此错误Error:(19, 0) No service of type StyledTextOutputFactory available in ProjectScopeServices.时,此方法有效。要解决此错误,我们需要添加此spring依赖插件

id "io.spring.dependency-management" version "0.6.0.RELEASE"

但是之后出现上述问题,我将其作为问题发布。所以上面的解决方案可行