README.adoc 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. image::https://badges.gitter.im/Join%20Chat.svg[Gitter,link=https://gitter.im/spring-projects/spring-security?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge]
  2. image:https://travis-ci.org/spring-projects-experimental/spring-authorization-server.svg?branch=master["Build Status", link="https://travis-ci.org/spring-projects-experimental/spring-authorization-server"]
  3. = Spring Authorization Server
  4. Spring Authorization Server is a community-driven project led by the https://spring.io/projects/spring-security/[Spring Security] team and is focused on delivering https://tools.ietf.org/html/rfc6749#section-1.1[OAuth 2.0 Authorization Server] support to the Spring community.
  5. The project will start in Spring's experimental projects as an independent project so that it can evolve more rapidly.
  6. The ultimate goal of this project is to replace the Authorization Server support provided by https://spring.io/projects/spring-security-oauth/[Spring Security OAuth].
  7. With the much needed help from our community, this project will grow in the same way that the original Spring Security OAuth project did.
  8. == Code of Conduct
  9. This project adheres to the Contributor Covenant link:CODE_OF_CONDUCT.adoc[code of conduct].
  10. By participating, you are expected to uphold this code. Please report unacceptable behavior to spring-code-of-conduct@pivotal.io.
  11. == Downloading Artifacts
  12. See https://github.com/spring-projects/spring-framework/wiki/Downloading-Spring-artifacts[downloading Spring artifacts] for Maven repository information.
  13. == Documentation
  14. Be sure to read the https://docs.spring.io/spring-security/site/docs/current/reference/html5/[Spring Security Reference], as well as the https://docs.spring.io/spring-security/site/docs/current/reference/html5/#oauth2[OAuth 2.0 Reference], which describes the Client and Resource Server features available.
  15. Extensive JavaDoc for the Spring Security code is also available in the https://docs.spring.io/spring-security/site/docs/current/api/[Spring Security API Documentation].
  16. == Quick Start
  17. We recommend that you review the https://tools.ietf.org/html/rfc6749[OAuth 2.0 Authorization Framework] to gain a deep understanding of the framework.
  18. The https://oauth.net/2/[OAuth 2.0] website, maintained by Aaron Parecki, provides links to learning resources as well as the various extension specifications.
  19. == Building from Source
  20. Spring Authorization Server uses a https://gradle.org[Gradle]-based build system.
  21. In the instructions below, https://vimeo.com/34436402[`./gradlew`] is invoked from the root of the source tree and serves as
  22. a cross-platform, self-contained bootstrap mechanism for the build.
  23. === Prerequisites
  24. https://help.github.com/set-up-git-redirect[Git] and the https://www.oracle.com/technetwork/java/javase/downloads[JDK8 build].
  25. Be sure that your `JAVA_HOME` environment variable points to the `jdk1.8.0` folder extracted from the JDK download.
  26. === Check out sources
  27. [indent=0]
  28. ----
  29. git clone git@github.com:spring-projects-experimental/spring-authorization-server.git
  30. ----
  31. === Install all spring-\* jars into your local Maven cache
  32. [indent=0]
  33. ----
  34. ./gradlew install
  35. ----
  36. === Compile and test; build all jars, distribution zips, and docs
  37. [indent=0]
  38. ----
  39. ./gradlew build
  40. ----
  41. Discover more commands with `./gradlew tasks`.
  42. == Getting Support
  43. Check out the https://stackoverflow.com/questions/tagged/spring-security[Spring Security tags on Stack Overflow].
  44. https://spring.io/services[Commercial support] is available too.
  45. == Contributing
  46. https://help.github.com/articles/creating-a-pull-request[Pull requests] are welcome; see the link:CONTRIBUTING.adoc[contributor guidelines] for details.
  47. == License
  48. Spring Authorization Server is Open Source software released under the
  49. https://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 license].