diff --git a/_config.yml b/_config.yml index bc1bafca..f92e55c2 100644 --- a/_config.yml +++ b/_config.yml @@ -10,20 +10,20 @@ redcarpet: ### The following properties will change on a project-by-project basis # Context path in the remote website (usually /), will be prepended to absolute URLs for static resources -baseurl: /gh-pages +baseurl: /spring-ldap # Name of the project for display in places like page titles -name: Spring Framework +name: Spring LDAP # ID of the project in the metadata API at spring.io (if this is not a # valid project ID the javascript widgets in the home page will not work) -project: spring-framework +project: spring-ldap # Project github URL -github_repo_url: http://github.com/spring-projects/spring-framework +github_repo_url: http://github.com/spring-projects/spring-ldap # Project forum URL -forum: http://forum.spring.io/forum/spring-projects/container +forum: http://forum.spring.io/forum/spring-projects/data/ldap ### The following properties are constant for most projects diff --git a/_includes/build.gradle b/_includes/build.gradle new file mode 100644 index 00000000..027420d7 --- /dev/null +++ b/_includes/build.gradle @@ -0,0 +1,4 @@ +dependencies { + compile '{@= groupId @}:spring-ldap-core:{@= version @}' + compile '{@= groupId @}:spring-ldap-core-tiger:{@= version @}' +} diff --git a/_includes/pom.xml b/_includes/pom.xml new file mode 100644 index 00000000..6bb510a0 --- /dev/null +++ b/_includes/pom.xml @@ -0,0 +1,24 @@ + + + {@= groupId @} + spring-ldap-core + {@= version @} + + + {@= groupId @} + spring-ldap-core-tiger + {@= version @} + + +{@ if (repository) { @} + + + {@= repository.id @} + {@= repository.name @} + {@= repository.url @} + + {@= repository.snapshotsEnabled @} + + +{@ } @} + diff --git a/img/project-icon-large.png b/img/project-icon-large.png new file mode 100644 index 00000000..85833279 Binary files /dev/null and b/img/project-icon-large.png differ diff --git a/index.html b/index.html new file mode 100644 index 00000000..3f183d97 --- /dev/null +++ b/index.html @@ -0,0 +1,76 @@ +--- +# The name of your project +title: Spring Data JPA + +badges: + + # Specify your project's twitter handle, if any. Delete if none. + twitter: SpringLDAP + + # Customize your project's badges. Delete any entries that do not apply. + custom: + - name: Source (GitHub) + url: https://github.com/spring-projects/spring-ldap + icon: github + + - name: Issues (JIRA) + url: http://jira.springsource.org/browse/LDAP + icon: tracking + + - name: CI (Bamboo) + url: https://build.springsource.org/browse/LDAP + icon: ci + + - name: Forum + url: http://forum.spring.io/forum/spring-projects/data/ldap + icon: forum + + - name: StackOverflow + url: http://stackoverflow.com/questions/tagged/spring-ldap + icon: stackoverflow + + - name: Metrics (SonarQube) + url: https://sonar.springsource.org/dashboard/index/org.springframework.ldap:spring-ldap + icon: metrics + +--- + + + + +{% capture billboard_description %} + +Makes it easier to build Spring-based applications that use the Lightweight Directory Access Protocol. + +{% endcapture %} + +{% capture main_content %} + +Spring LDAP is a Java library for simplifying LDAP operations, based on the pattern of Spring's JdbcTemplate. The framework relieves the user of common chores, such as looking up and closing contexts, looping through results, encoding/decoding values and filters, and more. + +## Features + +* Provides LDAP template which eliminates the need to worry about creating and closing LdapContext and looping through NamingEnumeration +* Comprehensive unchecked Exception hierarchy built on Spring's DataAccessException +* Contains classes for dynamically building LDAP filters and Distinguished Names (DNs) +* Client-side LDAP transaction management +* Much more... + + +## Quick Start + +{% include download_widget.md %} + +{% endcapture %} + +{% capture related_resources %} + +### Getting Started + +[Introduction to Spring LDAP](http://docs.spring.io/spring-ldap/docs/current/reference/html/introduction.html) + +{% endcapture %} + + +{% include project_page.html %} + \ No newline at end of file