Files
spring-security/src/site/apt/svn-usage.apt
Luke Taylor 746f052d42 Fixed URLs.
2007-11-07 15:39:54 +00:00

45 lines
1.9 KiB
Plaintext

----------------
Subversion Usage
----------------
Subversion Usage
* Web Access
You can browse the Subversion repository at
{{{http://acegisecurity.svn.sourceforge.net/viewvc/acegisecurity/}}}
* Subversion Access
The code can be checked out anonymously using the subversion command-line client:
+----------------------------------------------------------------------------------------------------------------------+
svn co http://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/trunk/
+----------------------------------------------------------------------------------------------------------------------+
Note that the above command checks out the trunk source which is the least likely to be stable (although it should
always build correctly with no failing unit tests). If you are a beginner, or are looking for the source for a
specific stable version, you can use a different URL. For example, the following command would check out the 1.0
branch of the code which should only contain bugfixes and minor updates so should be very stable:
+----------------------------------------------------------------------------------------------------------------------+
svn co http://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/branches/1.0.x-branch/
+----------------------------------------------------------------------------------------------------------------------+
Specific tagged releases can be checked out from the URL
{{{"http://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/tags/}}}.
* Nightly Snapshots
If you'd prefer not to use the subversion client directly, please see our {{{"downloads.html"}downloads page}} for
nightly snapshots. Note that these are taken from the trunk and may not be suitable for new users.