2
0

README.adoc 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. = Spring Security
  3. Spring Security provides security services for the http://docs.spring.io[Spring IO Platform]. Spring Security 3.1 requires Spring 3.0.3 as
  4. a minimum and also requires Java 5.
  5. For a detailed list of features and access to the latest release, please visit http://spring.io/projects[Spring projects].
  6. == Downloading Artifacts
  7. See https://github.com/spring-projects/spring-framework/wiki/Downloading-Spring-artifacts[downloading Spring artifacts] for Maven repository information.
  8. == Documentation
  9. Be sure to read the http://docs.spring.io/spring-security/site/docs/current/reference/htmlsingle/[Spring Security Reference].
  10. Extensive JavaDoc for the Spring Security code is also available in the http://docs.spring.io/spring-security/site/docs/current/apidocs/[Spring Security API Documentation].
  11. == Quick Start
  12. We recommend you visit http://docs.spring.io/spring-security/site/docs/current/reference/htmlsingle/[Spring Security Reference] and read the "Getting Started" page.
  13. == Building from Source
  14. Spring Security uses a http://gradle.org[Gradle]-based build system.
  15. In the instructions below, http://vimeo.com/34436402[`./gradlew`] is invoked from the root of the source tree and serves as
  16. a cross-platform, self-contained bootstrap mechanism for the build.
  17. === Prerequisites
  18. http://help.github.com/set-up-git-redirect[Git] and the http://www.oracle.com/technetwork/java/javase/downloads[JDK7 build].
  19. Be sure that your `JAVA_HOME` environment variable points to the `jdk1.7.0` folder extracted from the JDK download.
  20. === Check out sources
  21. [indent=0]
  22. ----
  23. git clone git@github.com:spring-projects/spring-security.git
  24. ----
  25. === Install all spring-\* jars into your local Maven cache
  26. [indent=0]
  27. ----
  28. ./gradlew install
  29. ----
  30. === Compile and test; build all jars, distribution zips, and docs
  31. [indent=0]
  32. ----
  33. ./gradlew build
  34. ----
  35. Discover more commands with `./gradlew tasks`.
  36. See also the https://github.com/spring-projects/spring-framework/wiki/Gradle-build-and-release-FAQ[Gradle build and release FAQ].
  37. == Getting Support
  38. Check out the http://stackoverflow.com/questions/tagged/spring-security[Spring Security tags on Stack Overflow].
  39. http://spring.io/services[Commercial support] is available too.
  40. == Contributing
  41. http://help.github.com/send-pull-requests[Pull requests] are welcome; see the https://github.com/spring-projects/spring-security/blob/master/CONTRIBUTING.md[contributor guidelines] for details.
  42. == License
  43. Spring Security is Open Source software released under the
  44. http://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 license].