From 97a15fa2d2d34d31d067d299807bd4285d16ff45 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 11 Feb 2005 12:25:32 +0000 Subject: [PATCH] here is a plan git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277634 13f79535-47bb-0310-9956-ffa450edef68 --- proposal/sandbox/svn/README | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 proposal/sandbox/svn/README diff --git a/proposal/sandbox/svn/README b/proposal/sandbox/svn/README new file mode 100644 index 000000000..a689336cf --- /dev/null +++ b/proposal/sandbox/svn/README @@ -0,0 +1,26 @@ +This library provides Ant task(s) as wrapper(s) over the svn command +line utility. + +Alternative approaches like JNI or even a native Java SVN client exist +and have been taken by other teams. In particular we know (this list +is certainly incomplete): + +* using javahl JNI bindings + of subversion + +* using a pure Java SVN client + +each of which provides Ant tasks. + +The task(s) of this library only provides very rudimentary support for +SVN, matching what the traditional Ant task(s) vor CVS could do. + +If you need more than what this libary provides, we encourage you to +check out the existing alternatives. + +=============== + +The first cut will mimic the implementation of the task, it will +even be split into an abstract task and a very thin real task - it may +be possible to base tasks similar to the optional CVS tasks on the +abstract task as well.