mirror of
https://github.com/apache/commons-math.git
synced 2025-02-24 11:37:06 +00:00
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:
parent
4853917da1
commit
e2b8720d5d
48
build.xml
48
build.xml
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
@ -113,4 +113,5 @@
|
||||
</fileset>
|
||||
</copy>
|
||||
</target>
|
||||
</project>
|
||||
</project>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user