Skip to content

Commit

Permalink
SRCH-70 fix checkstyle.xml to get the 2.9.0b01 tag building
Browse files Browse the repository at this point in the history
git-svn-id: https://source.sakaiproject.org/svn/search/trunk@102224 66ffb92e-73f9-0310-93c1-f5514f145a0a
  • Loading branch information
ottenhoff committed Dec 21, 2011
1 parent 99315e3 commit 62d7994
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions search/src/site/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

<!-- Checks that a package.html file exists for each package. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html#PackageHtml -->
<module name="PackageHtml">
<module name="JavadocPackage">
<property name="severity" value="warning"/>
</module>

Expand All @@ -67,7 +67,6 @@
<module name="Translation"/>

<module name="StrictDuplicateCode">
<property name="charset" value="UTF-8"/>
<property name="min" value="30"/>
</module>

Expand Down Expand Up @@ -109,9 +108,11 @@

<!-- Checks for Headers -->
<!-- See http://checkstyle.sf.net/config_header.html -->
<!--
<module name="RegexpHeader">
<property name="headerFile" value="src/site/java.header"/>
</module>
-->

<!-- Following interprets the header file as regular expressions. -->
<!-- <module name="RegexpHeader"/> -->
Expand All @@ -131,9 +132,11 @@

<!-- Checks for Size Violations. -->
<!-- See http://checkstyle.sf.net/config_sizes.html -->
<!--
<module name="FileLength">
<property name="severity" value="warning"/>
</module>
-->
<module name="LineLength" >
<property name="max" value="100"/>
</module>
Expand Down Expand Up @@ -249,10 +252,12 @@
<!--
<module name="FinalParameters"/>
-->
<!--
<module name="GenericIllegalRegexp">
<property name="format" value="\s+$"/>
<property name="message" value="Line has trailing spaces."/>
</module>
-->
<!--
<module name="TodoComment">
<property name="severity" value="info"/>
Expand Down

0 comments on commit 62d7994

Please sign in to comment.