. */ require_once 'phing/Task.php'; require_once 'phing/tasks/ext/svn/SvnBaseTask.php'; /** * Copies a repository from the repository url to another * * @version $Id: SvnCopyTask.php 905 2010-10-05 16:28:03Z mrook $ * @package phing.tasks.ext.svn * @since 2.3.0 */ class SvnCopyTask extends SvnBaseTask { private $message = ""; /** * Sets the message */ function setMessage($message) { $this->message = $message; } /** * Gets the message */ function getMessage() { return $this->message; } /** * The main entry point * * @throws BuildException */ function main() { $this->setup('copy'); $this->log("Copying SVN repository from '" . $this->getRepositoryUrl() . "' to '" . $this->getToDir() . "'"); $this->run(array($this->getToDir()), array('message' => $this->getMessage())); } }