尝试在Ubuntu(8)上运行带有grails 2.0.3的应用程序时遇到以下问题,该应用程序在OSX上正常运行:
:: problems summary ::
:::: WARNINGS
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED DEPENDENCIES ::
::::::::::::::::::::::::::::::::::::::::::::::
:: org.grails.plugins#resources;1.1.6: configuration not found in org.grails.plugins#resources;1.1.6: 'master'. It was required from org.grails.plugins#jquery-mobile;1.0.3 compile
::::::::::::::::::::::::::::::::::::::::::::::
:: problems summary ::
:::: WARNINGS
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED DEPENDENCIES ::
::::::::::::::::::::::::::::::::::::::::::::::
:: org.grails.plugins#resources;1.1.6: configuration not found in org.grails.plugins#resources;1.1.6: 'master'. It was required from org.grails.plugins#jquery-mobile;1.0.3 compile
::::::::::::::::::::::::::::::::::::::::::::::
| Error Failed to resolve dependencies (Set log level to 'warn' in BuildConfig.groovy for more information):
- org.grails.plugins:resources:latest.integration
知道在哪里寻找问题吗?
答案 0 :(得分:1)
这可能是插件加载顺序的问题。
遇到类似问题时,我从application.properties中删除了所有插件,并在插件后添加了插件(每次服务器都重新启动)。
答案 1 :(得分:1)
所有插件和项目信息都保存在两个目录中
.grails
和
.ivy2
通常他们在您的用户主帐户下。
升级时,您应该使用grails升级命令。这将解决您的所有插件信息。
如果您遇到问题,您可以执行的其他操作是删除.grails和.ivy2目录并从头开始重建项目。
答案 2 :(得分:0)
我有同样的问题,这就是我发现这个问题的原因。我只是再次运行run-app命令就可以了。