README.txt revision 1290
0N/AOpenGrok - a wicked fast source browser
0N/A---------------------------------------
0N/A
0N/AOpenGrok is a fast and usable source code search and cross reference
0N/Aengine, written in Java. It helps you search, cross-reference and navigate
0N/Ayour source tree. It can understand various program file formats and
115N/Aversion control histories like SCCS, RCS, CVS, Subversion and Mercurial.
0N/A
0N/AOpenGrok is the tool used for the OpenSolaris Source Browser.
0N/A
0N/ARequirements
0N/A------------
975N/A * Latest Java http://java.sun.com/ (At least 1.6)
1073N/A * A servlet container like Tomcat (6.x or later)
0N/A http://tomcat.apache.org/
116N/A supporting Servlet 2.4 and JSP 2.0
0N/A * Exuberant Ctags http://ctags.sourceforge.net/
0N/A * Subversion 1.3.0 or later if SVN support is needed
0N/A http://subversion.tigris.org/
115N/A * Mercurial 0.9.3 or later if Mercurial support is needed
115N/A http://www.selenic.com/mercurial/wiki/
1086N/A * JFlex Ant task (if you want to build OpenGrok)
13N/A http://www.jflex.org/
0N/A
0N/A
0N/AUsage
0N/A-----
0N/ASRC_ROOT refers to the directory containing your source tree.
0N/AOpenGrok analyzes the source tree and builds a search index along with
0N/Across-referenced hypertext versions of the source files. These generated
0N/Adata files will be stored in DATA_ROOT directory.
975N/AProject concept - one project is one directory underneath SRC_ROOT and
975N/Ausually contains a checkout of a project(or it's branch, version, ...)
975N/Asources, it can have several attributes (in its XML description), note that
975N/Ainterface of projects is being stabilized so it can change. Projects
975N/Aeffectively replace need for more web applications with opengrok .war and
975N/Aleave you with one indexer and one web application serving MORE source code
975N/Arepositories - projects. A nice concept is to have directories underneath
975N/ASRC_ROOT with a naming convention, thereby creating a good overview of
975N/Aprojects (e.g. name-version-branch). Then you have a simple update script &
975N/Asimple index refresher script in place, which simplifies management of more
975N/Arepositories.
0N/A
0N/AOpenGrok setup Step.0 - Setting up the Sources.
0N/A----------------------------------------------
0N/ASource base must be available locally for OpenGrok to work efficiently. No
115N/Achanges are required to your source tree. If the code is under source control
115N/Amanagement (SCM) OpenGrok requires the checked out source tree under SRC_ROOT.
975N/AIt is possible for some SCM systems to use a remote repository (Subversion,
975N/ACVS), but this is not recommended due to the performance penalty. Special
975N/Aoption is needed to enable remote repository support(-r on).
0N/ANote that OpenGrok ignores symbolic links.
0N/A
0N/A---------------------------------------------------
975N/AUsing Opengrok wrapper script(Solaris and Linux) to create indexes.
975N/A---------------------------------------------------
975N/A
975N/AStep.1 - Deploy the web application
975N/A=====================================
975N/A
975N/AWe provided you with OpenGrok wrapper script, which should aid in deploying
975N/Athe web application.
975N/APlease change to opengrok directory (can vary on your system)
979N/ANote that now you might need to change to user which owns the target
979N/Adirectories for data, e.g. on Solaris you'd do # pfexec su - webservd
975N/A
979N/A$ cd /usr/opengrok/bin
975N/A
975N/Aand run
975N/A
979N/A$ ./OpenGrok deploy
975N/A
975N/AThis command will do some sanity checks and will deploy the source.war in
975N/Aits directory to one of detected web application containers.
975N/APlease follow the error message it provides.
975N/AIf it fails to discover your container, please refer to optional steps on
975N/Achanging web application properties, which has manual steps on how to do
975N/Athis.
975N/A
975N/ANote that OpenGrok script expects the directory /var/opengrok to be
975N/Aavailable to user running opengrok with all permissions. In root user case
975N/Ait will create all the directories needed, otherwise you have to manually
975N/Acreate the directory and grant all permissions to the user used.
975N/A
975N/A
975N/AStep.2 - Populate DATA_ROOT Directory, let the indexer generate the project
975N/AXML config file, update configuration.xml to your web app
975N/A=====================================
975N/A
975N/ASecond step is to just run the indexing (can take a lot of time). After this
975N/Ais done, indexer automatically attempts to upload newly generated
975N/Aconfiguration to the web application. Most probably you will not be able to
975N/Ause {Opengrok before this is done.
975N/A
975N/APlease change to opengrok directory (can vary on your system)
975N/A
979N/A$ cd /usr/opengrok/bin
975N/A
975N/Aand run, if your SRC_ROOT is prepared under /var/opengrok/src
975N/A
979N/A$ ./OpenGrok index
975N/A
975N/Aotherwise (if SRC_ROOT is in different directory) run:
975N/A
979N/A$ ./OpenGrok index <absolute_path_to_your_SRC_ROOT>
975N/A
975N/AAbove command should try to upload latest index status reflected into
975N/Aconfiguration.xml to a running source web application.
975N/AOnce above command finishes without errors(e.g. SEVERE: Failed to send
975N/Aconfiguration to localhost:2424
975N/A), you should be able to enjoy your opengrok and search your sources using
975N/Alatest indexes and setup.
975N/A
975N/ACongratulations, you should now be able to point your browser to
975N/Ahttp://<YOUR_WEBAPP_SERVER>:<WEBAPPSRV_PORT>/source to work with your fresh
975N/Aopengrok installation! :-)
975N/A
975N/A
975N/AAt this time we'd like to point out some customization to OpenGrok script
975N/Afor advanced users.
975N/AA common case would be, that you want the data in some other directory than
975N/A/var/opengrok.
975N/AThis can be easily achieved by using environment variable
975N/AOPENGROK_INSTANCE_BASE .
975N/AE.g. if my opengrok data directory is /tank/opengrok and my source root is
975N/Ain /tank/source and I'd like to get more verbosity I'd run the indexer as:
975N/A
979N/A$ OPENGROK_VERBOSE=true OPENGROK_INSTANCE_BASE=/tank/opengrok \
979N/A ./OpenGrok index /tank/source
975N/A
975N/ASince above will also change default location of config file, beforehands(or
975N/Arestart your web container after creating this symlink) I suggest doing
975N/Abelow for our case of having opengrok instance in /tank/opengrok :
975N/A
979N/A$ ln -s /tank/opengrok/etc/configuration.xml \
979N/A /var/opengrok/etc/configuration.xml
975N/A
975N/AA lot more customizations can be found inside the script, you just need to
975N/Ahave a look at it, eventually create a configuration out of it and use
975N/AOPENGROK_CONFIGURATION environment variable to point to it. Obviously such
975N/Asetups can be used for nightly cron job updates of index or other automated
975N/Apurposes.
975N/A
975N/A
975N/A---------------------------------------------------
984N/AUsing smf service(OpenSolaris) to maintain opengrok indexes.
975N/A---------------------------------------------------
975N/A
975N/AIf you installed opengrok from a package, then configure the service like this:
975N/A
975N/A# svccfg -s opengrok
979N/A listprop opengrok
979N/A setprop opengrok/srcdir="/absolute/path/to/your/sourcetree"
979N/A setprop opengrok/maxmemory="2048"
979N/A end
975N/A
975N/Athen make the service start the indexing, at this point it would be nice if
975N/Athe web application is already running.
975N/A
984N/A# svcadm enable -rs opengrok
984N/A(which will enable tomcat6 as dependency)
975N/A
984N/AWhen the service starts indexing for first time, it's already enabled and
984N/Adepending on tomcat6, so at this point the web application should be
984N/Aalready running.
984N/AThe indexing is not done when opengrok service is disabled.
984N/A
984N/ATo rebuild the index later (e.g. after source code changed)just run:
975N/A# svcadm refresh opengrok
975N/A
984N/ANote: before removing opengrok package please disable the service.
984N/AIf you don't do it, it will not be removed automatically.
984N/AIn such case please remove it manually.
975N/A
975N/A---------------------------------------------------
975N/AUsing command line interface(general pointers) to create indexes.
0N/A---------------------------------------------------
0N/A
0N/AStep.1 - Populate DATA_ROOT Directory
0N/A=====================================
299N/AOption 1. OpenGrok: There is a sample shell script OpenGrok that is suitable
911N/Afor using in a cron job to run regularly. Modify the variables in the script
299N/Ato point appropriate directories, or as the code suggests factor your local
911N/Aconfiguration into a separate file and simplify future upgrades.
0N/A
0N/AOption 2. opengrok.jar: You can also directly use the Java application. If
0N/Athe sources are all located in a directory SRC_ROOT and the data and
0N/Ahypertext files generated by OpenGrok are to be stored in DATA_ROOT, run
0N/A
205N/A $ java -jar opengrok.jar -s SRC_ROOT -d DATA_ROOT
0N/A
0N/ASee opengrok.jar manual below for more details.
0N/A
0N/AStep.2 - Configure and Deploy source.war Webapp
0N/A===============================================
0N/ATo configure the webapp source.war, look into the parameters defined in
0N/Aweb.xml of source.war file and change them (see note1) appropriately.
0N/A
0N/A * HEADER: is the fragment of HTML that will be used to display title or
0N/A logo of your project
0N/A * SRC_ROOT: the absolute path name of the root directory of your source tree
0N/A * DATA_ROOT: absolute path of the directory where OpenGrok data
0N/A files are stored
1290N/A - Header file 'header_include' can be created under DATA_ROOT. The
1290N/A contents of this file file will be appended to the header of each
1290N/A web page after the OpenGrok logo element.
0N/A
0N/AOptional Step.3 - Path Descriptions
0N/A-----------------------------------
0N/AOpenGrok uses path descriptions in various places (For eg. while showing
0N/Adirectory listings or search results) Example descriptions are in paths.tsv
0N/Afile. You can list descriptions for directories one per line tab separated
0N/Aformat path tab description. Refer to example 4 below.
0N/A
115N/ANote 1 - Changing webapp parameters: web.xml is the deployment descriptor
0N/Afor the web application. It is in a Jar file named source.war, you can
116N/Achange the :
0N/A
0N/A * Option 1: Unzip the file to TOMCAT/webapps/source/ directory and
979N/A change the source/WEB-INF/web.xml and other static html files like
979N/A index.html to customize to your project.
0N/A
0N/A * Option 2: Extract the web.xml file from source.war file
0N/A
979N/A $ unzip source.war WEB-INF/web.xml
979N/A
979N/A edit web.xml and re-package the jar file.
0N/A
979N/A $ zip -u source.war WEB-INF/web.xml
0N/A
979N/A Then copy the war files to <i>TOMCAT</i>/webapps directory.
0N/A
116N/A * Option 3: Edit the Context container element for the webapp
116N/A
979N/A Copy source.war to TOMCAT/webapps
116N/A
979N/A When invoking OpenGrok to build the index, use -w <webapp> to set the
979N/A context.
116N/A
979N/A After the index is built, there's a couple different ways to set the
979N/A Context for the servlet container:
979N/A - Add the Context inside a Host element in TOMCAT/conf/server.xml
116N/A
979N/A <Context path="/<webapp>" docBase="source.war">
979N/A <Parameter name="DATA_ROOT" value="/path/to/data/root" override="false" />
979N/A <Parameter name="SRC_ROOT" value="/path/to/src/root" override="false" />
979N/A <Parameter name="HEADER" value='...' override="false" />
979N/A </Context>
116N/A
979N/A - Create a Context file for the webapp
116N/A
979N/A This file will be named `<webapp>.xml'.
116N/A
979N/A For Tomcat, the file will be located at:
979N/A `TOMCAT/conf/<engine_name>/<hostname>', where <engine_name>
979N/A is the Engine that is processing requests and <hostname> is a Host
979N/A associated with that Engine. By default, this path is
979N/A 'TOMCAT/conf/Catalina/localhost' or 'TOMCAT/conf/Standalone/localhost'.
116N/A
979N/A This file will contain something like the Context described above.
975N/A
0N/A---------------------------------------------------
863N/AUsing Java DB for history cache
863N/A(instead of gzipped xml files)
863N/A---------------------------------------------------
863N/A
901N/AYou need Java DB 10.5.3 or later
901N/A(OpenSolaris: # pkg install SUNWjavadb or SUNWj6dev ,
863N/ADebian/Ubuntu: # apt-get install sun-java6-javadb).
863N/AThere are two modes, having Java DB embedded, or running a Java DB server.
1086N/AJava DB server is default option, we will not describe how to set up embedded
863N/Aoption.
863N/A
863N/A1) Start the server:
863N/A$ mkdir -p $DATA_ROOT/derby
863N/A
863N/AOpenSolaris:
863N/A# svcadm enable javadb
863N/AOR
863N/A$ java -Dderby.system.home=$DATA_ROOT/derby -jar /opt/SUNWjavadb/lib/derbynet.jar start
863N/AOR
863N/A$ java -Dderby.system.home=$DATA_ROOT/derby -jar /usr/jdk/instances/jdk1.6.0/db/lib/derbynet.jar start
863N/A
863N/ADebian:
863N/A$ java -Dderby.system.home=$DATA_ROOT/derby -jar /usr/lib/jvm/java-6-sun/db/lib/derbynet.jar start
863N/A
863N/A
863N/A2) You need to have the derbyclient.jar in lib directory of opengrok.jar and in source.war WEB-INF/lib
863N/ACopy it over from
863N/AOpenSolaris: /opt/SUNWjavadb/lib/derbyclient.jar OR /usr/jdk/instances/jdk1.6.0/db/lib/derbyclient.jar
863N/ADebian: /usr/lib/jvm/java-6-sun/db/lib/derbyclient.jar
863N/A
863N/A3) Use these options with indexer when indexing/generating the configuration:
863N/A -D -H
863N/A
863N/AAlso the Java DB server has to be running during indexing and for the web application.
863N/A
863N/ANote: To use a bigger database buffer, which may improve performance of both
863N/Aindexing and fetching of history, create a file named derby.properties in
863N/A$DATA_ROOT/derby and add this line to it:
863N/Aderby.storage.pageCacheSize=25000
863N/A
863N/A---------------------------------------------------
975N/AOptional CLI - Command Line Interface Usage
975N/A---------------------------------------------------
975N/A
975N/A You need to pass location of project file + the query to Search class, e.g.
975N/Afor fulltext search for project with above generated configuration.xml you'd
975N/Ado:
975N/A
979N/A$ java -cp ./opengrok.jar org.opensolaris.opengrok.search.Search -R \
975N/A/var/opengrok/etc/configuration.xml -f fulltext_search_string
975N/A
975N/A For quick help run:
975N/A
975N/A$ java -cp ./opengrok.jar org.opensolaris.opengrok.search.Search
975N/A
975N/A---------------------------------------------------
975N/AOptional need to change web application properties or name
975N/A---------------------------------------------------
975N/A
975N/A You might need to modify the web application if you don't store the
975N/Aconfiguration file in the default location
975N/A(/var/opengrok/etc/configuration.xml).
975N/A
975N/ATo configure the webapp source.war, look into the parameters defined in
1086N/AWEB-INF/web.xml of source.war (use jar or zip/unzip or your preferred zip
975N/Atool to get into it - e.g. extract the web.xml file from source.war ($ unzip
975N/Asource.war WEB-INF/web.xml) file, edit web.xml and re-package the jar file
975N/A(zip -u source.war WEB-INF/web.xml) ) file and change those web.xml
975N/Aparameters appropriately. These sample parameters need modifying(there are
975N/Amore options, refer to manual or read param comments).
975N/A
975N/A * CONFIGURATION - the absolute path to XML file containing project
975N/A * configuration (e.g. /var/opengrok/etc/configuration.xml )
975N/A * ConfigAddress - port for remote updates to configuration, optional,
1086N/A * but advised(since there is no authentication) to be set to
975N/A * localhost:<some_port> (e.g. localhost:2424), if you choose some_port
975N/A * below 1024 you have to have root privileges
975N/A
975N/AIf you need to change name of the web application from source to something
975N/Aelse you need to use special option -w <new_name> for indexer to create
975N/Aproper xrefs, besides changing the .war file name. Examples below show just
975N/Adeploying source.war, but you can use it to deploy your new_name.war too.
975N/A
975N/ADeploy the modified .war file in glassfish/Sun Java App Server:
975N/A-----------------------------------
975N/A
975N/A * Option 1: Use browser and log into glassfish web administration
975N/A * interface
975N/A
975N/A Common Tasks / Applications / Web Applications , button Deploy and point
975N/Ait to your source.war webarchive
975N/A
975N/A * Option 2: Copy the source.war file to
975N/A * GLASSFISH/domains/YOURDOMAIN/autodeploy directory, glassfish will try
1086N/A * to deploy it "auto magically".
975N/A * Option 3: Use cli from GLASSFISH directory:
975N/A
975N/A# ./bin/asadmin deploy /path/to/source.war
975N/A
975N/ADeploy the modified .war file in tomcat:
975N/A-----------------------------------
975N/A
975N/A * just copy the source.war file to TOMCAT_INSTALL/webapps directory.
975N/A
975N/A---------------------------------------------------
979N/AOptional opengrok indexer setup with agent and systray GUI control application
979N/A---------------------------------------------------
979N/A
979N/Awe provide an example opengrok-agent.properties file, which can be used when
979N/Astarting special OpenGrok Agent, where you can connect with a systray GUI
979N/Aapplication.
979N/A
979N/ATo start the indexer with configuration run:
979N/A$ java -cp ./opengrok.jar org.opensolaris.opengrok.management.OGAgent \
979N/A--config opengrok-agent.properties
979N/A
979N/Athen from the remote machine one can run:
979N/A$ java -cp ./opengrok.jar \
979N/Aorg.opensolaris.opengrok.management.client.OpenGrokTrayApp
979N/A
979N/Aassuming configuration permits remote connections(so not listening on
979N/Alocalhost, but rather on a physical network interface)
979N/A
979N/AThis agent is work in progress, so it might not fully work.
979N/A
979N/A---------------------------------------------------
295N/AUsing Findbugs
295N/A---------------------------------------------------
295N/AIf you want to run Findbugs (http://findbugs.sourceforge.net/) on OpenGrok,
295N/Ayou have to download Findbugs to your machine, and install it where you have
295N/Achecked out your OpenGrok source code, under the lib/findbugs directory,
295N/Alike this:
295N/A
341N/A cd ~/.ant/lib
295N/A wget http://..../findbugs-x.y.z.tar.gz
295N/A gtar -xf findbugs-x.y.z.tar.gz
295N/A mv findbugs-x.y.z findbugs
295N/A
295N/AYou can now run ant with the findbugs target:
295N/A
295N/A ant findbugs
295N/A ...
295N/A findbugs:
295N/A [findbugs] Executing findbugs from ant task
295N/A [findbugs] Running FindBugs...
295N/A [findbugs] Warnings generated: nnn
295N/A [findbugs] Output saved to findbugs/findbugs.html
295N/A
295N/ANow, open findbugs/findbugs.html in a web-browser, and start fixing bugs!
295N/A
341N/AIf you want to install findbugs some other place than ~/.ant/lib, you can untar the
341N/A.tar.gz file to a directory, and use the findbugs.home property to tell ant where to find
341N/Afindbugs, like this (if you have installed fundbugs under the lib directory):
341N/A
341N/A ant findbugs -Dfindbugs.home=lib/findbug
341N/A
341N/AThere is also a findbugs-xml ant target that can be used to generate XML files that can
341N/Alater be parsed, e.g. by Hudson.
341N/A
301N/A---------------------------------------------------
301N/AUsing Emma
301N/A---------------------------------------------------
301N/AIf you want to check test coverage on OpenGrok, download Emma from
301N/Ahttp://emma.sourceforge.net/. Place emma.jar and emma-ant.jar in the
336N/Aopengrok/trunk/lib directory, or ~/.ant/lib.
301N/A
301N/ANow you can instrument your classes, and create a jar file:
301N/A
301N/A ant emma-instrument
301N/A
301N/AIf you are using NetBeans, select File - "opengrok" Properties
301N/A- libraries - Compile tab. Press the "Add JAR/Folder" and select
301N/Alib/emma.jar and lib/emma_ant.jar
301N/A
301N/AIf you are not using netbeans, you have to edit the file
301N/Anbproject/project.properties, and add "lib/emma.jar" and
301N/A"lib/emma_ant.jar" to the javac.classpath inside it.
301N/A
1086N/ANow you can put the classes into jars and generate distributable:
301N/A
301N/A ant dist
301N/A
301N/AThe classes inside opengrok.jar should now be instrumented.
301N/AIf you use opengrok.jar for your own set of tests, you need
301N/Aemma.jar in the classpath.If you want to specify where to store
301N/Athe run time analysis, use these properties:
301N/A
301N/A emma.coverage.out.file=path/coverage.ec
301N/A emma.coverage.out.merge=true
301N/A
301N/AThe coverage.ec file should be placed in the opengrok/trunk/coverage
1086N/Adirectory for easy analyze.
301N/A
301N/AIf you want to test the coverage of the unit tests, you can
301N/Arun the tests:
301N/A
301N/A ant test (Or Alt+F6 in NetBeans)
301N/A
301N/ANow you should get some output saying that Emma is placing runtime
301N/Acoverage data into coverage.ec.
301N/A
301N/ATo generate reports, run ant again:
301N/A
301N/A ant emma-report
301N/A
301N/ALook at coverage/coverage.txt, coverage/coverage.xml and
301N/Acoverage/coverage.html to see how complete your tests are.
301N/A
576N/ANote: For full coverage report your system has to provide proper junit test
576N/Aenvironment, that would mean:
576N/A- you have to use ant 1.7 and above
576N/A- at least junit-4.?.jar has to be in ants classpath (e.g. in ./lib)
576N/A- your PATH must contain exuberant ctags binary
576N/A- your PATH variable must contain binaries of appropriate SCM SW, so commands
576N/Ahg, sccs, cvs, git, bzr, svn (svnadmin too) must be available for full report
576N/A
379N/A---------------------------------------------------
379N/AUsing Checkstyle
379N/A---------------------------------------------------
379N/A
379N/ATo check that your code follows the standard coding conventions,
379N/Ayou can use checkstyle from http://checkstyle.sourceforge.net/
379N/A
379N/AFirst you must download checkstyle from http://checkstyle.sourceforge.net/ ,
1113N/AYou need Version 5.3 (or newer). Extract the package you have
398N/Adownloaded, and create a symbolic link to it from ~/.ant/lib/checkstyle,
379N/Ae.g. like this:
379N/A
379N/A cd ~/.ant/lib
1113N/A unzip ~/Desktop/checkstyle-5.3.zip
1113N/A ln -s checkstyle-5.3 checkstyle
379N/A
379N/AYou also have to create symbolic links to the jar files:
379N/A
379N/A cd checkstyle
1113N/A ln -s checkstyle-5.3.jar checkstyle.jar
1113N/A ln -s checkstyle-all-5.3.jar checkstyle-all.jar
379N/A
379N/ATo run checkstyle on the source code, just run ant checkstyle:
379N/A
379N/A ant checkstyle
379N/A
411N/AOutput from the command will be stored in the checkstyle directory.
379N/A
398N/AIf you want to install checkstyle some other place than ~/.ant/lib, you can
398N/Auntar the .tar.gz file to a directory, and use the checkstyle.home property
398N/Ato tell ant where to find checkstyle, like this (if you have installed
398N/Acheckstyle under the lib directory):
379N/A
379N/A ant checkstyle -Dcheckstyle.home=lib/checkstyle
379N/A
411N/A---------------------------------------------------
997N/AUsing PMD and CPD
411N/A---------------------------------------------------
411N/A
411N/ATo check the quality of the OpenGrok code you can also use PMD
411N/Afrom http://pmd.sourceforge.net/.
411N/A
411N/AHow to install:
411N/A
411N/A cd ~/.ant/lib
975N/A unzip ~/Desktop/pmd-bin-4.2.5.zip
975N/A ln -s pmd-4.2.5/ pmd
411N/A
411N/AYou also have to make links to the jar files:
411N/A
411N/A cd ~/.ant/lib/pmd/lib
975N/A ln -s pmd-4.2.5.jar pmd.jar
411N/A ln -s jaxen-1.1.1.jar jaxen.jar
411N/A
411N/ATo run PMD on the rource code, just run ant pmd:
411N/A
411N/A ant pmd
411N/A
411N/AOutout from the command will be stored in the pmd subdirectory.
411N/A
411N/A % ls pmd
411N/A pmd_report.html pmd_report.xml
411N/A
411N/AIf you want to install PMD some other place than ~/.ant/lib, you can
411N/Aunzip the .zip file to a directory, and use the pmd.home property
411N/Ato tell ant where to find PMD, like this (if you have installed
411N/APMD under the lib directory):
411N/A
975N/A ant pmd -Dpmd.home=lib/pmd-4.2.5
411N/A
997N/ATo run CPD, just use the same as above, but use targets:
997N/A
997N/A ant cpd cpd-xml
997N/A
997N/AWhich will result in
997N/A
997N/A % ls pmd
997N/A cpd_report.xml cpd_report.txt
997N/A
624N/A---------------------------------------------------
624N/AUsing JDepend
624N/A---------------------------------------------------
624N/ATo see dependencies in the source code, you can use JDepend from
624N/Ahttp://clarkware.com/software/JDepend.html.
624N/A
624N/AHow to install:
624N/A
624N/A cd ~/.ant/lib
624N/A unzip ~/Desktop/jdepend-2.9.zip
624N/A ln -s jdepend-2.9/ jdepend
624N/A cd jdepend/lib
624N/A ln -s jdepend-2.9.jar jdepend.jar
624N/A
624N/AHow to analyze:
624N/A
624N/A ant jdepend
624N/A
624N/AOutput is stored in the jdepend directory:
624N/A
624N/A $ ls jdepend/
624N/A report.txt report.xml
624N/A
0N/AAUTHORS
0N/A-------
0N/AChandan B.N, Sun Microsystems. https://blogs.sun.com/chandan
0N/ATrond Norbye, norbye.org
0N/AKnut Pape, eBriefkasten.de
13N/AMartin Englund, Sun Microsystems
136N/AKnut Anders Hatlen, Sun Microsystems
975N/ALubos Kosco, Sun Microsystems