You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README 931 B

1234567891011121314151617181920212223242526
  1. This library provides Ant task(s) as wrapper(s) over the svn command
  2. line utility.
  3. Alternative approaches like JNI or even a native Java SVN client exist
  4. and have been taken by other teams. In particular we know (this list
  5. is certainly incomplete):
  6. * <http://subclipse.tigris.org/svnant.html> using javahl JNI bindings
  7. of subversion
  8. * <http://tmate.org/svn/ant.html> using a pure Java SVN client
  9. each of which provides Ant tasks.
  10. The task(s) of this library only provides very rudimentary support for
  11. SVN, matching what the traditional Ant task(s) vor CVS could do.
  12. If you need more than what this libary provides, we encourage you to
  13. check out the existing alternatives.
  14. ===============
  15. The first cut will mimic the implementation of the <cvs> task, it will
  16. even be split into an abstract task and a very thin real task - it may
  17. be possible to base tasks similar to the optional CVS tasks on the
  18. abstract task as well.