6

我尝试将我的 Grails 2.1.1 应用程序部署到 Heroku。

我运行git push master heroku并运行了一段时间(编译正常,获取依赖项,ec),然后它给了我这个消息:

|Building WAR file
   ...........................Error 
   |
   Error executing script War: : Replace: source file /app/.grails/2.1.1/projects/Project/stage/WEB-INF/applicationContext.xml doesn't exist (Use --stacktrace to see the full trace)
 !     Failed to build app
 !     Heroku push rejected, failed to compile Grails app

当我在grails war本地运行时,它可以正常工作。

我做了一些阅读,但我还没有找到一个可靠的答案。我读过的类似问题是由与 JDK 相关的问题或插件引起的。

4

1 回答 1

10

在这种情况下,解决方案是将 WEB-INF 添加到我的存储库中。默认情况下,我的 .gitignore(通过 GitHub 创建)忽略 WEB-INF。

于 2013-02-20T20:02:21.350 回答