Fixed incorrect version.
This commit is contained in:
24
readme.txt
24
readme.txt
@@ -1,10 +1,10 @@
|
||||
Spring-LDAP 1.3-RC1 (Oct 2008)
|
||||
-----------------------------
|
||||
Spring LDAP 1.3.0.RC1 (Oct 2008)
|
||||
--------------------------------
|
||||
http://www.springframework.org/ldap
|
||||
|
||||
1. INTRODUCTION
|
||||
|
||||
Spring-LDAP is a library to simplify LDAP programming in Java, built on the same
|
||||
Spring LDAP is a library to simplify LDAP programming in Java, built on the same
|
||||
principles as Spring Jdbc.
|
||||
|
||||
The LdapTemplate class encapsulates all the plumbing work involved in traditional LDAP
|
||||
@@ -14,7 +14,7 @@ where to find data (DNs and Filters) and what do do with it (map to and from dom
|
||||
objects, bind, modify, unbind, etc.), in the same way that JdbcTemplate relieves the
|
||||
programmer of all but the actual SQL and how the data maps to the domain model.
|
||||
|
||||
In addition to this, Spring-LDAP provides Exception translation from NamingExceptions
|
||||
In addition to this, Spring LDAP provides Exception translation from NamingExceptions
|
||||
to an unchecked exception hirearchy, as well as several utilities for working with filters,
|
||||
LDAP paths and Attributes.
|
||||
|
||||
@@ -39,7 +39,7 @@ https://springframework.svn.sourceforge.net/svnroot/springframework/spring-ldap/
|
||||
Nightly builds are available for download from:
|
||||
http://static.springframework.org/downloads/nightly/snapshot-download.php?project=LDAP
|
||||
|
||||
Spring-LDAP is released under the terms of the Apache Software License (see license.txt).
|
||||
Spring LDAP is released under the terms of the Apache Software License (see license.txt).
|
||||
|
||||
3. DISTRIBUTION JAR FILES
|
||||
|
||||
@@ -47,12 +47,12 @@ The following distinct jar files are included in the distribution. This list
|
||||
specifies the respective contents and third-party dependencies.
|
||||
|
||||
* spring-ldap-core-x.x.jar
|
||||
- Contents: The Spring-LDAP library
|
||||
- Contents: The Spring LDAP library
|
||||
- Dependencies: Commons Logging, Commons Lang, Commons Pool, spring-beans,
|
||||
spring-core, spring-context, spring-jdbc, spring-tx, ldapbp
|
||||
|
||||
* spring-ldap-core-tiger-x.x.jar
|
||||
- Contents: The Spring-LDAP Java 5 support library
|
||||
- Contents: The Spring LDAP Java 5 support library
|
||||
- Dependencies: Commons Logging, Commons Lang, Commons Pool, spring-beans,
|
||||
spring-core, spring-context, spring-jdbc, spring-tx, ldapbp
|
||||
|
||||
@@ -74,19 +74,19 @@ Milestone releases (such as release candidates) are available from the spring fr
|
||||
<url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
|
||||
</repository>
|
||||
|
||||
This means that in order to use the latest release (1.3-rc1), you need to specify the
|
||||
This means that in order to use the latest release (1.3.0.RC1), you need to specify the
|
||||
repository above and include the following dependencies:
|
||||
<dependency>
|
||||
<groupId>org.springframework.ldap</groupId>
|
||||
<artifactId>spring-ldap-core</artifactId>
|
||||
<version>1.3-rc1</version>
|
||||
<version>1.3.0.RC1</version>
|
||||
</dependency>
|
||||
|
||||
For java 1.5 support:
|
||||
<dependency>
|
||||
<groupId>org.springframework.ldap</groupId>
|
||||
<artifactId>spring-ldap-core-tiger</artifactId>
|
||||
<version>1.3-rc1</version>
|
||||
<version>1.3.0.RC1</version>
|
||||
</dependency>
|
||||
|
||||
Nighly builds are published to the snapshot repository:
|
||||
@@ -100,8 +100,8 @@ Nighly builds are published to the snapshot repository:
|
||||
5. WHERE TO START
|
||||
|
||||
The distribution contains extensive JavaDoc documentation as well as full reference
|
||||
documentation and a sample application illustrating different ways to use Spring-LDAP.
|
||||
The Spring-LDAP homepage can be found at the following URL:
|
||||
documentation and a sample application illustrating different ways to use Spring LDAP.
|
||||
The Spring LDAP homepage can be found at the following URL:
|
||||
|
||||
http://www.springframework.org/ldap
|
||||
|
||||
|
||||
Reference in New Issue
Block a user