*** empty log message ***

git-svn-id: https://svn.apache.org/repos/asf/jakarta/jmeter/trunk@324744 13f79535-47bb-0310-9956-ffa450edef68

Former-commit-id: b939d5d8ad
This commit is contained in:
Sebastian Bazley 2004-06-26 14:51:36 +00:00
parent f882bb32e3
commit 517aa2c5de
1 changed files with 22 additions and 43 deletions

View File

@ -99,15 +99,16 @@
HomePage: http://www.cs.umd.edu/~pugh/java/bugs/ HomePage: http://www.cs.umd.edu/~pugh/java/bugs/
To use the findbugs target, download and install the findbugs binary distribution To use the findbugs target, download and install the findbugs binary distribution
Set the value of findbugs.home according to where you installed findbugs, for example: Set the value of findbugs.homedir according to where you installed findbugs, for example:
ant findbugs -Dfindbugs.home=/etc/findbugs -Dfindbugs.level=medium ant findbugs -Dfindbugs.homedir=/etc/findbugs -Dfindbugs.level=medium
[The defaults are /findbugs and high] [The defaults are /findbugs and medium]
--> -->
<property name="findbugs.homedir" value="/findbugs" /> <property name="findbugs.homedir" value="/findbugs" />
<property name="findbugs.level" value="medium" /> <property name="findbugs.level" value="medium" />
<property name="findbugs.outName" value="reports/jmeter-fb" /> <property name="findbugs.outName" value="reports/jmeter-fb" />
<target name="findbugs"> <target name="findbugs" description="Run the stand-alone Findbugs detector">
<mkdir dir="reports"/> <echoproperties prefix="findbugs"/>
<mkdir dir="reports"/>
<taskdef name="findbugs" <taskdef name="findbugs"
classpath="${findbugs.homedir}/lib/findbugs-ant.jar" classpath="${findbugs.homedir}/lib/findbugs-ant.jar"
classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/> classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/>
@ -130,45 +131,25 @@
<class location="${lib.dir}/jorphan.jar" /> <class location="${lib.dir}/jorphan.jar" />
<sourcePath path="${src.jorphan}" /> <sourcePath path="${src.jorphan}" />
<sourcePath path="${src.tcp}" /> <sourcePath path="${src.tcp}" />
<!--
<!--
Uncomment the following 2 lines to include htmlparser in the analysis
<class location="${lib.dir}/htmlparser.jar" /> <class location="${lib.dir}/htmlparser.jar" />
<sourcePath path="${src.htmlparser}" /> <sourcePath path="${src.htmlparser}" />
--> -->
<!--
Uncomment the previous lines and comment the following line <auxClasspath>
to do a source analysis of htmlparser <fileset dir="${lib.dir}">
--> <include name="*.jar"/>
<auxClasspath path="${lib.dir}/htmlparser.jar" /> </fileset>
<auxClasspath path="${jakarta-oro.jar}" /> </auxClasspath>
<auxClasspath path="${junit.jar}" />
<auxClasspath path="${soap.jar}" /> <auxClasspath>
<auxClasspath path="${jdom.jar}" /> <fileset dir="${lib.opt}">
<auxClasspath path="${tidy.jar}" /> <include name="*.jar"/>
<auxClasspath path="${logkit.jar}" /> </fileset>
<auxClasspath path="${excalibur-logger.jar}" /> </auxClasspath>
<auxClasspath path="${excalibur-compatibility.jar}" />
<auxClasspath path="${excalibur-datasource.jar}" />
<auxClasspath path="${excalibur-pool.jar}" />
<auxClasspath path="${excalibur-instrument.jar}" />
<auxClasspath path="${excalibur-i18n.jar}" />
<auxClasspath path="${avalon-excalibur.jar}" />
<auxClasspath path="${avalon-framework.jar}" />
<auxClasspath path="${commons-collections.jar}" />
<auxClasspath path="${commons-logging.jar}" />
<auxClasspath path="${commons-httpclient.jar}" />
<auxClasspath path="${batik-awt-util.jar}" />
<auxClasspath path="${xstream.jar}" />
<auxClasspath path="${xpp3.jar}" />
<auxClasspath path="${lib.dir}/${bsf.jar}" />
<auxClasspath path="${lib.dir}/${bsh.jar}" />
<auxClasspath path="${lib.opt}/${bsf.jar}" />
<auxClasspath path="${lib.opt}/${bsh.jar}" />
<auxClasspath path="${lib.dir}/activation.jar" />
<auxClasspath path="${lib.dir}/mail.jar" />
<auxClasspath path="${lib.opt}/activation.jar" />
<auxClasspath path="${lib.opt}/mail.jar" />
<auxClasspath path="${js.jar}" />
</findbugs> </findbugs>
<antcall target="findbugs-style"/> <antcall target="findbugs-style"/>
</target> </target>
@ -372,8 +353,6 @@
not be included in the runtime classpath. This is intended not be included in the runtime classpath. This is intended
for testing JMeter without the optional Jar file(s). for testing JMeter without the optional Jar file(s).
--> -->
<property name="bsf.jar" value="bsf.jar"/>
<property name="bsh.jar" value="bsh-1.3.0.jar"/>
<!-- Build classpath (includes the optional jar directory) --> <!-- Build classpath (includes the optional jar directory) -->
<path id="classpath"> <path id="classpath">