node {
checkout([
$class: 'SubversionSCM',
locations: [
[
credentialsId: '083ca939-470f-4bbd-9f32-30fc845fbb45',
depthOption: 'infinity',
ignoreExternalsOption: true,
local: './tmp', remote: 'https://SVN_URL/REPO_NAME/branches/branch2'
]
],
workspaceUpdater: [$class: 'CheckoutUpdater']
])
checkout([
$class: 'SubversionSCM',
locations: [
[
credentialsId: '083ca939-470f-4bbd-9f32-30fc845fbb45',
depthOption: 'infinity',
ignoreExternalsOption: true,
local: '.', remote: 'https://SVN_URL/REPO_NAME/branches/branch2'
]
],
workspaceUpdater: [$class: 'CheckoutUpdater']
])
}