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'
我試過各種組合,但毫無效果。