diff --git a/_config.yml b/_config.yml index bc1bafc..cb9a477 100644 --- a/_config.yml +++ b/_config.yml @@ -10,21 +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-security-kerberos # Name of the project for display in places like page titles -name: Spring Framework +name: Spring Security Kerberos # 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-security-kerberos # Project github URL -github_repo_url: http://github.com/spring-projects/spring-framework +github_repo_url: http://github.com/spring-projects/spring-security-kerberos # Project forum URL -forum: http://forum.spring.io/forum/spring-projects/container - +forum: http://forum.spring.io/forum/spring-projects/security ### The following properties are constant for most projects diff --git a/_includes/build.gradle b/_includes/build.gradle new file mode 100644 index 0000000..83bb55a --- /dev/null +++ b/_includes/build.gradle @@ -0,0 +1,3 @@ +dependencies { + compile '{@= groupId @}:spring-security-kerberos-core:{@= version @}' +} diff --git a/_includes/pom.xml b/_includes/pom.xml new file mode 100644 index 0000000..03de3bf --- /dev/null +++ b/_includes/pom.xml @@ -0,0 +1,19 @@ + + + {@= groupId @} + spring-security-kerberos-core + {@= 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 0000000..143b8d7 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 0000000..850f9cb --- /dev/null +++ b/index.html @@ -0,0 +1,71 @@ +--- +# The name of your project +title: Spring Security Kerberos + +badges: + + # Specify your project's twitter handle, if any. Delete if none. + twitter: SpringSecurity + + # Customize your project's badges. Delete any entries that do not apply. + custom: + - name: Source (GitHub) + url: https://github.com/spring-projects/spring-security-kerberos + icon: github + + - name: Issues (JIRA) + url: http://jira.springsource.org/browse/SES + icon: tracking + + - name: CI (Bamboo) + url: https://build.springsource.org/browse/SES + icon: ci + + - name: Forum + url: http://forum.stage.springsource.org/forum/spring-projects/security + icon: forum + + - name: StackOverflow + url: http://stackoverflow.com/questions/tagged/spring-security + icon: stackoverflow + +--- + + + + +{% capture parent_link %} +[Spring Security]({{site.projects_site_url}}/spring-security) +{% endcapture %} + + +{% capture billboard_description %} + +Spring Security Extension for use with Kerberos. + +{% endcapture %} + +{% capture main_content %} + +With the Spring Security Kerberos Extension, your users are authenticated against your web application just by opening the URL. There is no need to enter a username/password and no need to install additional software. + + +## Quick Start + +{% include download_widget.md %} + +{% endcapture %} + +{% capture related_resources %} + +### Resources + +* [Quick Start](http://blog.springsource.com/2009/09/28/spring-security-kerberos/) +* [Sample](https://github.com/SpringSource/spring-security-kerberos/tree/master/spring-security-kerberos-sample) +* [Spring Security]({{site.projects_site_url}}/spring-security) + +{% endcapture %} + + +{% include project_page.html %} + \ No newline at end of file