You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2012/11/28 08:15:12 UTC

svn commit: r1414558 - /isis/site/trunk/content/contributors/release-process.md

Author: danhaywood
Date: Wed Nov 28 07:15:12 2012
New Revision: 1414558

URL: http://svn.apache.org/viewvc?rev=1414558&view=rev
Log:
isis site

Modified:
    isis/site/trunk/content/contributors/release-process.md

Modified: isis/site/trunk/content/contributors/release-process.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/contributors/release-process.md?rev=1414558&r1=1414557&r2=1414558&view=diff
==============================================================================
--- isis/site/trunk/content/contributors/release-process.md (original)
+++ isis/site/trunk/content/contributors/release-process.md Wed Nov 28 07:15:12 2012
@@ -112,15 +112,9 @@ where `rat.num` property is set to a hig
 Do *not* use `mvn rat:check`; depending on your local Maven configuratoin this may bring down the obsolete mvn-rat-plugin from Codehaus repo.
 }
 
-All being well the command should succeed.  If it does not, then review the `rat.txt` files in the failing module's `target` directory.  Missing license notes are indicated using the key:
-
-- `!???` identifies those files that are missing license notes
-- `tests-common/*` and `tests/*` ignores certain test files
-- `hsql-db` are generated HSQLDB directories
-
-You can collate these together using something like:
+All being well the command should succeed.  If it does not, then review the `rat.txt` files in the failing module's `target` directory.  Missing license notes are indicated using the key `!???`.  You can collate these together using something like:
 <pre>
-for a in `find . -name rat.txt -print`; do grep -H '!???' $a; done
+for a in `find . -name rat.txt -print`; do grep '!???' $a; done
 </pre>
 
 Investigate and fix any reported violations.