0
我是buildr的新手,所以我可能会漏掉一些明显的东西。如何在buildr中爆炸war文件
据this page,它应该是相当简单:
- Download explode.rb
At the top of your buildfile, add the following:
require 'explode.rb'
Define explode task on your web application:
package(:war).explode :target => "jetty/webapps/myApplication"
Run the task
buildr myApp:explode
不过,但我不能得到它的工作。如果我只是去通过文章中的步骤,我得到以下错误:
RuntimeError : Don't know how to build task 'myApp:explode'
我试过各种组合,但毫无效果。