Remove outdated references to Groovy

This commit is contained in:
Stephane Nicoll
2017-02-25 09:31:03 +01:00
parent fffcd8a774
commit 53679aa860
5 changed files with 12 additions and 13 deletions
+3 -3
View File
@@ -23,12 +23,12 @@ None of these is essential for a pull request, but they will all help. They can
added after the original pull request but before a merge.
* Use the https://github.com/spring-projects/spring-framework/wiki/Spring-Framework-Code-Style[Spring Framework code format conventions].
* Make sure all new `.groovy` files to have a simple Javadoc class comment with at least an
* Make sure all new `.java` files to have a simple Javadoc class comment with at least an
`@author` tag identifying you, and preferably at least a paragraph on what the class is
for.
* Add the ASF license header comment to all new `.groovy` files (copy from existing files
* Add the ASF license header comment to all new `.java` files (copy from existing files
in the project)
* Add yourself as an `@author` to the .groovy files that you modify substantially (more
* Add yourself as an `@author` to the .java files that you modify substantially (more
than cosmetic changes).
* Add some Javadocs and, if you change the namespace, some XSD doc elements.
* A few unit tests would help a lot as well -- someone has to do it.