To make a web application as distributable, we can configure this in the standard web.xml:
<web-app>
<!-- ... -->
<distributable/>
<!-- ... -->
</web-app>
But I'm using JRuby/Rails and building the WAR file with Warbler. Is there anyway to do this in warble.rb configuration file.
Thank you.