[ldap-sdk-commits] SF.net SVN: ldap-sdk:[1592] trunk
A Java-based LDAP API
Brought to you by:
dirmgr,
kennethleo
From: <di...@us...> - 2023-03-08 17:40:15
|
Revision: 1592 http://sourceforge.net/p/ldap-sdk/code/1592 Author: dirmgr Date: 2023-03-08 17:40:13 +0000 (Wed, 08 Mar 2023) Log Message: ----------- Remove subversion repository info Updated the README to remove a reference to checking out the LDAP SDK source code from a subversion repository rather than from git. GitHub has announced that they will be discontinuing their support for subversion access to git repositories, so we will no longer provide instructions for accessing the code via subversion. This discontinuation also means that we will stop maintaining a mirror of the source code in a SourceForge subversion repository (which was the original location for the open source LDAP SDK project) because the process we used for mirroring the source code depended on GitHub's subversion support. Modified Paths: -------------- trunk/README trunk/README.md trunk/build.xml Modified: trunk/README =================================================================== --- trunk/README 2023-03-08 16:35:16 UTC (rev 1591) +++ trunk/README 2023-03-08 17:40:13 UTC (rev 1592) @@ -93,10 +93,6 @@ git clone https://github.com/pingidentity/ldapsdk.git -If you prefer subversion, you can instead use the command: - - svn checkout https://github.com/pingidentity/ldapsdk/trunk ldapsdk-svn - Once the code has been checked out, you can build the LDAP SDK by running the build.sh shell script on UNIX-based systems or build.bat batch file on Windows. Once the build has completed, the zip file containing the packaged LDAP SDK may Modified: trunk/README.md =================================================================== --- trunk/README.md 2023-03-08 16:35:16 UTC (rev 1591) +++ trunk/README.md 2023-03-08 17:40:13 UTC (rev 1592) @@ -46,12 +46,6 @@ git clone https://github.com/pingidentity/ldapsdk.git ``` -If you prefer subversion, you can instead use the command: - -``` -svn checkout https://github.com/pingidentity/ldapsdk/trunk ldapsdk-svn -``` - Once the code has been checked out, you can build the LDAP SDK by running the `build.sh` shell script on UNIX-based systems or `build.bat` batch file on Windows. Once the build has completed, the zip file containing the packaged LDAP SDK may be found in the build/package directory. ## How To Get Help with the UnboundID LDAP SDK for Java Modified: trunk/build.xml =================================================================== --- trunk/build.xml 2023-03-08 16:35:16 UTC (rev 1591) +++ trunk/build.xml 2023-03-08 17:40:13 UTC (rev 1592) @@ -673,7 +673,7 @@ - <!-- Get the Subversion revision number for the current source. --> + <!-- Get the git or svn revision for the current source. --> <target name="repository-info" unless="repository-info.revision"> <mkdir dir="${repository-info.classes.dir}" /> <javac srcdir="${repository-info.src.dir}" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |