CONTRIBUTING.adoc 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. _Have something you'd like to contribute to the framework? We welcome pull requests, but ask that you carefully read this document first to understand how best to submit them; what kind of changes are likely to be accepted; and what to expect from the Spring Security team when evaluating your submission._
  2. _Please refer back to this document as a checklist before issuing any pull request; this will save time for everyone!_
  3. = Code of Conduct
  4. Please see our https://github.com/spring-projects/.github/blob/master/CODE_OF_CONDUCT.md[code of conduct]
  5. = Similar but different
  6. Each Spring module is slightly different than another in terms of team size, number of issues, etc. Therefore each project is managed slightly different. You will notice that this document is very similar to the https://github.com/spring-projects/spring-framework/wiki/Contributor-guidelines[Spring Framework Contributor guidelines]. However, there are some subtle differences between the two documents, so please be sure to read this document thoroughly.
  7. = Importing into IDE
  8. The following provides information on setting up a development environment that can run the sample in http://www.springsource.org/sts[Spring Tool Suite 3.6.0+]. Other IDE's should work using Gradle's IDE support, but have not been tested.
  9. * IDE Setup
  10. * Install Spring Tool Suite 3.6.0+
  11. * You will need the following plugins installed (can be found on the Extensions Page)
  12. * Gradle Eclipse
  13. * Groovy Eclipse
  14. * Importing the project into Spring Tool Suite
  15. * File->Import…->Gradle Project
  16. As of new versions of Spring Tool Suite, you might need to install Groovy Eclipse pointing directly to the updates plugin location. To install Groovy Eclipse on Spring Tool Suite based on Eclipse Oxigen you must do the following steps:
  17. Help->Install New Software…->Add the following URL into _Work with_ field:
  18. http://dist.springsource.org/snapshot/GRECLIPSE/e4.7/[http://dist.springsource.org/snapshot/GRECLIPSE/e4.7/]
  19. = Understand the basics
  20. Not sure what a pull request is, or how to submit one? Take a look at GitHub's excellent https://help.github.com/articles/using-pull-requests[help documentation first].
  21. = Search GitHub issues; create an issue if necessary
  22. Is there already an issue that addresses your concern? Do a bit of searching in our https://github.com/spring-projects/spring-security/issues[GitHub issues ] to see if you can find something similar. If not, please create a new issue before submitting a pull request unless the change is not a user facing issue.
  23. = Discuss non-trivial contribution ideas with committers
  24. If you're considering anything more than correcting a typo or fixing a minor bug, please discuss it on the https://gitter.im/spring-projects/spring-security[Spring Security Gitter] before submitting a pull request. We're happy to provide guidance but please spend an hour or two researching the subject on your own including searching the forums for prior discussions.
  25. = Sign the Contributor License Agreement
  26. If you have not previously done so, please fill out and
  27. submit the https://cla.pivotal.io/sign/spring[Contributor License Agreement].
  28. = Create your branch from master
  29. Create your topic branch to be submitted as a pull request from master. The Spring team will consider your pull request for backporting on a case-by-case basis; you don't need to worry about submitting anything for backporting.
  30. = Use short branch names
  31. Branches used when submitting pull requests should preferably be named according to GitHub issues, e.g. 'gh-1234' or 'gh-1234-fix-npe'. Otherwise, use succinct, lower-case, dash (-) delimited names, such as 'fix-warnings', 'fix-typo', etc. This is important, because branch names show up in the merge commits that result from accepting pull requests, and should be as expressive and concise as possible.
  32. = Keep commits focused
  33. Remember each ticket should be focused on a single item of interest since the tickets are used to produce the changelog. Since each commit should be tied to a single GitHub issue, ensure that your commits are focused. For example, do not include an update to a transitive library in your commit unless the GitHub is to update the library. Reviewing your commits is essential before sending a pull request.
  34. = Mind the whitespace
  35. Please carefully follow the whitespace and formatting conventions already present in the framework.
  36. . Tabs, not spaces
  37. . Unix (LF), not dos (CRLF) line endings
  38. . Eliminate all trailing whitespace
  39. . Aim to wrap code at 120 characters, but favor readability over wrapping
  40. . Preserve existing formatting; i.e. do not reformat code for its own sake
  41. . Search the codebase using git grep and other tools to discover common naming conventions, etc.
  42. . Latin-1 (ISO-8859-1) encoding for Java sources; use native2ascii to convert if necessary
  43. Whitespace management tips
  44. . You can use the http://marketplace.eclipse.org/content/anyedit-tools[AnyEdit Eclipse plugin] to ensure spaces are used and to clean up trailing whitespaces.
  45. . Use git's pre-commit.sample hook to prevent invalid whitespace from being pushed out. You can enable it by moving ~/spring-security/.git/hooks/pre-commit.sample to ~/spring-security/.git/hooks/pre-commit and ensuring it is executable. For more information on hooks refer to http://git-scm.com/book/cs/ch7-3.html[Pro Git's Pre-Commit Hook's section]
  46. = Add Apache license header to all new classes
  47. = Update Apache license header to modified files as necessary
  48. Always check the date range in the license header. For example, if you've modified a file in 2012 whose header still reads
  49. <pre>
  50. * Copyright 2002-2011 the original author or authors.
  51. </pre>
  52. then be sure to update it to 2012 appropriately
  53. <pre>
  54. * Copyright 2002-2012 the original author or authors.
  55. </pre>
  56. = Use @since tags for newly-added public API types and methods
  57. e.g.
  58. <pre>
  59. /**
  60. * …
  61. *
  62. * @author First Last
  63. * @since 3.2
  64. * @see …
  65. */
  66. </pre>
  67. = Submit JUnit test cases for all behavior changes
  68. Search the codebase to find related unit tests and add additional `@Test` methods within.
  69. . Any new tests should end in the name Tests (note this is plural). For example, a valid name would be `FilterChainProxyTests`. An invalid name would be `FilterChainProxyTest`.
  70. . New test methods should not start with test. This is an old JUnit3 convention and is not necessary since the method is annotated with @Test.
  71. = Update spring-security-x.y.rnc for schema changes
  72. Update the http://www.relaxng.org[RELAX NG] schema `spring-security-x.y.rnc` instead of `spring-security-x.y.xsd` if you contribute changes to supported XML configuration. The XML schema file can be generated the following Gradle task:
  73. Changes to the XML schema will be overwritten by the Gradle build task.
  74. = Squash commits
  75. Use git rebase –interactive, git add –patch and other tools to "squash" multiple commits into atomic changes. In addition to the man pages for git, there are many resources online to help you understand how these tools work. Here is one: http://book.git-scm.com/4_interactive_rebasing.html[http://book.git-scm.com/4_interactive_rebasing.html].
  76. = Use real name in git commits
  77. Please configure git to use your real first and last name for any commits you intend to submit as pull requests. For example, this is not acceptable:
  78. Rather, please include your first and last name, properly capitalized, as submitted against the SpringSource contributor license agreement:
  79. <pre>
  80. Author: First Last &lt;link:mailto:&#x75;&#115;&#101;&#114;&#64;&#109;&#x61;&#x69;&#108;&#46;&#99;&#111;&#x6d;&#38;&#103;&#116;[&#x75;&#115;&#101;&#114;&#64;&#109;&#x61;&#x69;&#108;&#46;&#99;&#111;&#x6d;&#38;&#103;&#116;];
  81. </pre>
  82. This helps ensure traceability against the CLA, and also goes a long way to ensuring useful output from tools like git shortlog and others.
  83. You can configure this globally via the account admin area GitHub (useful for fork-and-edit cases); globally with
  84. or locally for the spring-security repository only by omitting the '–global' flag:
  85. <pre>
  86. cd spring-security
  87. git config user.name "First Last"
  88. git config user.email link:mailto:&#x75;&#115;&#101;&#x72;&#64;&#x6d;&#x61;&#x69;&#x6c;&#46;&#x63;&#111;&#109;[&#x75;&#115;&#101;&#x72;&#64;&#x6d;&#x61;&#x69;&#x6c;&#46;&#x63;&#111;&#109;]
  89. </pre>
  90. = Format commit messages
  91. . Keep the subject line to 50 characters or less if possible
  92. . Do not end the subject line with a period
  93. . In the body of the commit message, explain how things worked before this commit, what has changed, and how things work now
  94. . Include Fixes gh-<issue-number> at the end if this fixes a GitHub issue
  95. . Avoid markdown, including back-ticks identifying code
  96. = Run all tests prior to submission
  97. = Submit your pull request
  98. Subject line:
  99. Follow the same conventions for pull request subject lines as mentioned above for commit message subject lines.
  100. In the body:
  101. . Explain your use case. What led you to submit this change? Why were existing mechanisms in the framework insufficient? Make a case that this is a general-purpose problem and that yours is a general-purpose solution, etc
  102. . Add any additional information and ask questions; start a conversation, or continue one from GitHub Issues
  103. . Mention any GitHub Issues
  104. . Also mention that you have submitted the CLA as described above
  105. Note that for pull requests containing a single commit, GitHub will default the subject line and body of the pull request to match the subject line and body of the commit message. This is fine, but please also include the items above in the body of the request.
  106. = Mention your pull request on the associated GitHub issue
  107. Add a comment to the associated GitHub issue(s) linking to your new pull request.
  108. = Expect discussion and rework
  109. The Spring team takes a very conservative approach to accepting contributions to the framework. This is to keep code quality and stability as high as possible, and to keep complexity at a minimum. Your changes, if accepted, may be heavily modified prior to merging. You will retain "Author:" attribution for your Git commits granted that the bulk of your changes remain intact. You may be asked to rework the submission for style (as explained above) and/or substance. Again, we strongly recommend discussing any serious submissions with the Spring Framework team prior to engaging in serious development work.
  110. Note that you can always force push (git push -f) reworked / rebased commits against the branch used to submit your pull request. i.e. you do not need to issue a new pull request when asked to make changes.