README.adoc 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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://github.com/spring-projects-experimental/spring-authorization-server/workflows/CI/badge.svg?branch=master["Build Status", link="https://github.com/spring-projects-experimental/spring-authorization-server/actions?query=workflow%3ACI"]
  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. == Feature Planning
  9. This project uses https://www.zenhub.com/[ZenHub] to prioritize the feature roadmap and help organize the project plan.
  10. The project board can be accessed https://app.zenhub.com/workspaces/authorization-server-5e8f3182b5e8f5841bfc4902/board?repos=248032165[here].
  11. It is recommended to install the ZenHub https://www.zenhub.com/extension[browser extension] as it integrates natively within GitHub's user interface.
  12. == Code of Conduct
  13. This project adheres to the Contributor Covenant link:CODE_OF_CONDUCT.adoc[code of conduct].
  14. By participating, you are expected to uphold this code. Please report unacceptable behavior to spring-code-of-conduct@pivotal.io.
  15. == Downloading Artifacts
  16. See https://github.com/spring-projects/spring-framework/wiki/Downloading-Spring-artifacts[downloading Spring artifacts] for Maven repository information.
  17. == Documentation
  18. 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.
  19. 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].
  20. == Quick Start
  21. 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.
  22. 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.
  23. == Building from Source
  24. Spring Authorization Server uses a https://gradle.org[Gradle]-based build system.
  25. In the instructions below, https://vimeo.com/34436402[`./gradlew`] is invoked from the root of the source tree and serves as
  26. a cross-platform, self-contained bootstrap mechanism for the build.
  27. === Prerequisites
  28. https://help.github.com/set-up-git-redirect[Git] and the https://www.oracle.com/technetwork/java/javase/downloads[JDK8 build].
  29. Be sure that your `JAVA_HOME` environment variable points to the `jdk1.8.0` folder extracted from the JDK download.
  30. === Check out sources
  31. [indent=0]
  32. ----
  33. git clone git@github.com:spring-projects-experimental/spring-authorization-server.git
  34. ----
  35. === Install all spring-\* jars into your local Maven cache
  36. [indent=0]
  37. ----
  38. ./gradlew install
  39. ----
  40. === Compile and test; build all jars, distribution zips, and docs
  41. [indent=0]
  42. ----
  43. ./gradlew build
  44. ----
  45. Discover more commands with `./gradlew tasks`.
  46. == Getting Support
  47. Check out the https://stackoverflow.com/questions/tagged/spring-security[Spring Security tags on Stack Overflow].
  48. https://spring.io/services[Commercial support] is available too.
  49. == Contributing
  50. https://help.github.com/articles/creating-a-pull-request[Pull requests] are welcome; see the link:CONTRIBUTING.adoc[contributor guidelines] for details.
  51. == License
  52. Spring Authorization Server is Open Source software released under the
  53. https://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 license].