Make license check warning only for now
[oparent.git] / checkstyle / src / main / resources / check-license.xml
1 <?xml version="1.0"?>
2 <!DOCTYPE module PUBLIC
3           "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
4           "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
5
6 <!--
7     Checkstyle configuration that checks the license headers
8     expected by Open-O.
9  -->
10
11 <module name = "Checker">
12     <property name="charset" value="UTF-8"/>
13     <property name="severity" value="warning"/>
14
15     <module name="RegexpHeader">
16         <property name="headerFile" value="${checkstyle.header.file}"/>
17         <property name="multiLines" value="2"/>
18     </module>
19 </module>