mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
The plugin adds basic checks for license headers. At this stage we only enable checks for java source files. Other files are omitted at this point.
14 lines
514 B
XML
14 lines
514 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<additionalHeaders>
|
|
<javadoc_style>
|
|
<firstLine>/*</firstLine>
|
|
<beforeEachLine> * </beforeEachLine>
|
|
<endLine> */</endLine>
|
|
<!--skipLine></skipLine-->
|
|
<firstLineDetectionPattern>(\s|\t)*/\*.*$</firstLineDetectionPattern>
|
|
<lastLineDetectionPattern>.*\*/(\s|\t)*$</lastLineDetectionPattern>
|
|
<allowBlankLines>false</allowBlankLines>
|
|
<isMultiline>true</isMultiline>
|
|
</javadoc_style>
|
|
</additionalHeaders>
|