SvnCleanup.md

June 3, 2017 ยท View on GitHub

SvnCleanup task

Recursively cleans up the working copy, removing locks and resuming unfinished operations.

Configuration

PropertyDescriptionDefault value
cleanupDirectories to be recursively cleaned up by this task
usernameThe SVN username - leave empty if no authentication is required$project.svntools.username
passwordThe SVN password - leave empty if no authentication is required$project.svntools.password

Example

apply plugin: "at.bxm.svntools"

task svnCleanup(type: at.bxm.gradleplugins.svntools.tasks.SvnCleanup) {
  cleanup "$project.projectDir/my-working-copy"
}