我正在尝试将应用程序从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
但是当我刷新依赖关系时,它就会成功。
答案 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"
但是之后出现上述问题,我将其作为问题发布。所以上面的解决方案可行