Add project page
This commit is contained in:
10
_config.yml
10
_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 /<project>), 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
|
||||
|
||||
4
_includes/build.gradle
Normal file
4
_includes/build.gradle
Normal file
@@ -0,0 +1,4 @@
|
||||
dependencies {
|
||||
compile '{@= groupId @}:spring-ldap-core:{@= version @}'
|
||||
compile '{@= groupId @}:spring-ldap-core-tiger:{@= version @}'
|
||||
}
|
||||
24
_includes/pom.xml
Normal file
24
_includes/pom.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>{@= groupId @}</groupId>
|
||||
<artifactId>spring-ldap-core</artifactId>
|
||||
<version>{@= version @}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>{@= groupId @}</groupId>
|
||||
<artifactId>spring-ldap-core-tiger</artifactId>
|
||||
<version>{@= version @}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
{@ if (repository) { @}
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>{@= repository.id @}</id>
|
||||
<name>{@= repository.name @}</name>
|
||||
<url>{@= repository.url @}</url>
|
||||
<snapshots>
|
||||
<enabled>{@= repository.snapshotsEnabled @}</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>{@ } @}
|
||||
|
||||
BIN
img/project-icon-large.png
Normal file
BIN
img/project-icon-large.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
76
index.html
Normal file
76
index.html
Normal file
@@ -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
|
||||
|
||||
---
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en-US">
|
||||
|
||||
|
||||
{% 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...
|
||||
|
||||
<span id="quick-start"></span>
|
||||
## 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 %}
|
||||
</html>
|
||||
Reference in New Issue
Block a user