Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 799 Bytes

SvnCleanup.md

File metadata and controls

19 lines (13 loc) · 799 Bytes

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

Configuration

Property Description Default value
cleanup Directories to be recursively cleaned up by this task
username The SVN username - leave empty if no authentication is required $project.svntools.username
password The 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"
}