Removed tabs.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@766494 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2009-04-19 18:05:48 +00:00
parent 4853917da1
commit e2b8720d5d
3 changed files with 46 additions and 45 deletions

View File

@ -88,7 +88,7 @@
<!-- Should Java compilations set the 'optimize' compiler option? -->
<property name="compile.optimize" value="true"/>
<!-- JDK level -->
<property name="compile.source" value="1.5"/>
<property name="compile.target" value="1.5"/>
@ -168,34 +168,34 @@
<copy todir="${build.home}/test-classes">
<fileset dir="${test.home}">
<include name="**/*.xml"/>
<include name="**/*.txt"/>
</fileset>
<include name="**/*.xml"/>
<include name="**/*.txt"/>
</fileset>
</copy>
</target>
<target name="test" depends="compile.tests"
description="Run unit tests">
<junit printsummary="true"
errorProperty="test.failed"
failureProperty="test.failed"
fork="true"
showOutput="true">
<formatter usefile="false" type="plain"/>
<classpath refid="test.classpath"/>
<batchtest>
<fileset dir="${test.home}" includes="**/*Test.java"
excludes="**/*AbstractTest.java"/>
</batchtest>
</junit>
<fail message="There were test failures.">
<condition>
<and>
<istrue value="${test.failonerror}"/>
<isset property="test.failed"/>
</and>
</condition>
<junit printsummary="true"
errorProperty="test.failed"
failureProperty="test.failed"
fork="true"
showOutput="true">
<formatter usefile="false" type="plain"/>
<classpath refid="test.classpath"/>
<batchtest>
<fileset dir="${test.home}" includes="**/*Test.java"
excludes="**/*AbstractTest.java"/>
</batchtest>
</junit>
<fail message="There were test failures.">
<condition>
<and>
<istrue value="${test.failonerror}"/>
<isset property="test.failed"/>
</and>
</condition>
</fail>
</target>
@ -218,7 +218,7 @@
bottom="Copyright (c) 2003-${current.year} Apache Software Foundation"
classpathref="compile.classpath">
<link href="http://java.sun.com/j2se/1.5.0/docs/api/"/>
<link href="http://commons.apache.org/collections/api"/>
<link href="http://commons.apache.org/collections/api"/>
</javadoc>
</target>

View File

@ -39,31 +39,31 @@
<module name="InterfaceIsType"/>
<!-- Must have class / interface header comments including scm version -->
<module name="JavadocType">
<property name="versionFormat" value="\$Revision.*\$ \$Date.*\$"/>
</module>
<module name="JavadocType">
<property name="versionFormat" value="\$Revision.*\$ \$Date.*\$"/>
</module>
<!-- Require method javadocs, allow undeclared RTE -->
<module name="JavadocMethod">
<property name="allowUndeclaredRTE" value="true"/>
</module>
<module name="JavadocMethod">
<property name="allowUndeclaredRTE" value="true"/>
</module>
<!-- Require field javadoc -->
<module name="JavadocVariable"/>
<module name="JavadocVariable"/>
<!-- No tabs allowed! -->
<module name="TabCharacter"/>
<!-- No public fields -->
<module name="VisibilityModifier">
<module name="TabCharacter"/>
<!-- No public fields -->
<module name="VisibilityModifier">
<property name="protectedAllowed" value="true"/>
</module>
<!-- Require hash code override when equals is -->
<module name="EqualsHashCode"/>
<!-- Disallow unecessary instantiantion of Boolean, String -->
<module name="IllegalInstantiation">
<!-- Require hash code override when equals is -->
<module name="EqualsHashCode"/>
<!-- Disallow unecessary instantiantion of Boolean, String -->
<module name="IllegalInstantiation">
<property name="classes" value="java.lang.Boolean, java.lang.String"/>
</module>

View File

@ -113,4 +113,5 @@
</fileset>
</copy>
</target>
</project>
</project>