README.md in capistrano-redeploy-0.0.1 vs README.md in capistrano-redeploy-0.1.0

- old
+ new

@@ -71,23 +71,25 @@ set :redeploy_children, ["public"] set :redeploy_exclusions, ["assets", "system"] ### Redeploy files from local path with different names -Redeploy files in `src/main/resources` from current directory to `target/webapp/WEB-INF`. +Redeploy files in `src/main/webapp` from current directory to `target/webapp/WEB-INF`. # config/deploy.rb set :scm, :git set :deploy_via, :copy set :repository, "git://example.com/example.git" set :redeploy_variables, { :scm => :none, :deploy_via => :copy, :repository => ".", # redeploy from current directory + :copy_cache => nil, } - set :redeploy_source, "src/main/resources" + set :redeploy_source, "src/main/webapp" set :redeploy_destination, "target/webapp/WEB-INF" set :redeploy_children, ["."] + set :redeploy_exclusions, ["WEB-INF/web.xml"] ## Contributing 1. Fork it