You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2011/04/14 18:01:08 UTC

[Lucene-java Wiki] Update of "Validation" by SteveRowe

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Lucene-java Wiki" for change notification.

The "Validation" page has been changed by SteveRowe.
http://wiki.apache.org/lucene-java/Validation?action=diff&rev1=2&rev2=3

--------------------------------------------------

  Validation currently scans the specified lib directories and, for every jar file, looks for a corresponding license file, and in certain cases a NOTICE file.  It does not currently build out a LICENSE.txt or NOTICE.txt file from these, but see https://issues.apache.org/jira/browse/LUCENE-2971 for a issue to cover that.
  
  All Jar files, therefore must have a corresponding file named using the following convention:
-  file-name-LICENSE-[LICENSE TYPE].txt where LICENSE TYPE is one of the licenses enumerated in org.apache.lucene.validation.LicenseType (under ./lucene/src/tools).  The LicenseType enum also specifies whether a NOTICE file is required, so please refer to it for information on whether a NOTICE file is required.  (Note, this isn't cast in stone, as it is based on Grant's interpretation of ASF docs)
+  file-name-LICENSE-[LICENSE TYPE].txt where LICENSE TYPE is one of the licenses enumerated in org.apache.lucene.validation.License``Type (under ./lucene/src/tools).  The trunk version is [[http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/tools/java/org/apache/lucene/validation/LicenseType.java?view=markup|here]].  The License``Type enum also specifies whether a NOTICE file is required, so please refer to it for information on whether a NOTICE file is required.  (Note, this isn't cast in stone, as it is based on Grant's interpretation of ASF docs)
  
  = Other Validation Ideas =