Capistrano::Jetty
This gem provides support in Capistrano 3.x for copying a deployed artifact into Jetty’s webapps directory, then restarting Jetty.
Plays nicely with capistrano-scm-jenkins.
Installation
Add this line to your application's Gemfile:
gem 'capistrano-jetty'
And then execute:
$ bundle
Usage
This Gem requires that your deploy user have passwordless sudo rights to run
service jetty restart
. See Capistrano’s Authorisation docs
for a simple example.
In Capfile
:
require 'capistrano-jetty/jetty'
In your config/deploy.rb
:
# Filename to grab from your current_path & copy to
set :deployed_artifact_filename, "#{fetch(:application)}.war"
# Path to your Jetty webapps directory
set :jetty_webapps_path, '/usr/share/jetty/webapps'
Contributing
- Fork it ( http://github.com/evertrue/capistrano-jetty/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request