1
0

Added maven build (aimed at documentation). This isn't totally satisfactory (for example, I've stripped out the unit tests) and the user guide formatting isn't brilliant. But i feel that i want to be able to get some feedback and there are some other priorities. i'll try to get to this work later.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@139000 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Burrell Donkin
2004-02-15 09:39:17 +00:00
parent 63f5caa8d3
commit 400cb6b6ec
4 changed files with 127 additions and 3 deletions

24
checkstyle.xml Normal file
View File

@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.1//EN"
"http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
<!-- commons codec customization of default Checkstyle behavior -->
<module name="Checker">
<property name="basedir" value="src/checkstyle"/>
<property name="localeLanguage" value="en"/>
<module name="TreeWalker">
<!-- Verify that EVERY source file has the appropriate license -->
<module name="Header">
<property name="headerFile" value="LICENSE.txt"/>
<property name="ignoreLines" value="2,3,4,10"/>
</module>
<module name="OperatorWrap">
<property name="option" value="eol"/>
</module>
</module>
</module>