Created
May 6, 2012 13:06
-
-
Save bols-blue/2622266 to your computer and use it in GitHub Desktop.
jenkins backup ant task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project default="backup" basedir="."> | |
<property environment="env" /> | |
<target name="backup" > | |
<zip basedir="${env.HOME}" | |
destfile="/tmp/jenkins-backup.zip" excludes="war/**, workspace/*/**"> | |
</zip> | |
</target> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment