project.properties changes. 1. The build will not fail on a failed

unit test, 2. The date/time and version are included in the xdoc
transformation, 3. JUnit is now forker, and 4. We use checkstyle.properties
to customize the behavior of Checkstyle.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@140849 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tim O'Brien 2003-05-21 15:10:51 +00:00
parent 5de3587b86
commit 60bf133582
2 changed files with 28 additions and 0 deletions

15
checkstyle.properties Normal file
View File

@ -0,0 +1,15 @@
# commons math customization of default Checkstyle behavior
# Ignore operator wrap, this has the effect of allowing
# operators to appear at both the eol and the nl. This
# setting should be eol, but checkstyle had problems
# parsing this property when set to "eol". "ignore"
# was selected as a fallback.
checkstyle.wrap.operator = ignore
# Ignore padding around parethese, this allows for both
# foo(a,b), and foo( a, b ).
checkstyle.paren.pad = ignore
# One should not be instantiating a java.lang.Boolean
checkstyle.illegal.instantiations = java.lang.Boolean

13
project.properties Normal file
View File

@ -0,0 +1,13 @@
##
# Properties that override Maven build defaults
##
maven.checkstyle.properties=${bsaedir}/checkstyle.properties
maven.test.failure = false
maven.junit.fork=true
maven.linkcheck.enable=true
maven.xdoc.date=left
maven.xdoc.version=${pom.currentVersion}
maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html