[jsword-svn] jsword-support/tools/findbugs s

jswordcvs at crosswire.org jswordcvs at crosswire.org
Tue Aug 16 11:03:11 MST 2005


Update of /cvs/jsword/jsword-support/tools/findbugs
In directory www.crosswire.org:/tmp/cvs-serv29457/tools/findbugs

Added Files:
	build.xml HOWTO-UPGRADE.txt 
Log Message:
Upgrading jsword-support/tools

--- NEW FILE: build.xml ---
<project name="findbugs" default="findbugs">

  <property name="support.bugs" value="${support.tools}/findbugs"/>
  <property name="version.bugs" value="0.9.1"/>

  <!-- this should be overridden by the parent file -->
  <property name="support.tools" value=".."/>

  <!-- Unified location of source -->
  <property name="target.bugs.src" value="${target.temp}/findbugs/src"/>

  <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask">
    <classpath>
      <fileset dir="${support.bugs}/findbugs-${version.bugs}/lib" includes="**/*.jar"/>
    </classpath>
  </taskdef>

  <target name="findbugs">
    <mkdir dir="${target.web}/findbugs"/>
    <findbugs home="${support.bugs}/findbugs-${version.bugs}"
        output="html"
        outputFile="${target.web}/findbugs/index.html"
        reportLevel="low"
        workHard="true"
        jvmargs="-Xmx512m">
      <class location="${target.jar}/bibledesktop.jar"/>
      <class location="${target.jar}/jsword.jar"/>
      <class location="${target.jar}/common.jar"/>
      <auxClasspath path="${target.jar}/commons-net-1.3.0.jar"/>
      <auxClasspath path="${target.jar}/jdom-1.0.jar"/>
      <auxClasspath path="${target.jar}/lucene-1.4.3.jar"/>
      <auxClasspath path="../common/jar/jaf-1.0.2/activation.jar"/>
      <auxClasspath path="${target.jar}/jlfgr-1_0.jar"/>
    </findbugs>
  </target>

</project>

--- NEW FILE: HOWTO-UPGRADE.txt ---
Instructions on how to upgrade findbugs.

Obtain the most recent version of findbugs from:
   http://sourceforge.net/projects/findbugs

Unzip the file into this directory.

In the new directory, remove the following:
   bin
   doc
   src

Change the references to the old directory to the new directory in the following files:
   build.xml

In CVS remove the old findbugs directory.




More information about the jsword-svn mailing list