Issue Details (XML | Word | Printable)

Key: EQX-12
Type: Improvement Improvement
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Matt Raible
Reporter: Matt Raible
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
AppFuse Light

Add Beandoc support

Created: 23/Jun/05 11:07 PM   Updated: 15/Dec/05 06:29 PM   Resolved: 15/Dec/05 06:29 PM
Return to search
Component/s: Build/Deploy Process
Affects Version/s: 1.3
Fix Version/s: 1.5



Matt Raible added a comment - 15/Dec/05 06:29 PM
Added "beandoc" target so you can run "ant beandoc".

    <target name="beandoc" depends="init" description="Generate beandoc reports">
        <artifact:dependencies pathId="beandoc.classpath">
            <dependency groupId="org.springframework" artifactId="beandoc" version="0.7.0"/>
        </artifact:dependencies>

        <taskdef name="beandoc" classname="org.springframework.beandoc.client.AntTask">
            <classpath refid="beandoc.classpath"/>
        </taskdef>

        <mkdir dir="${build.dir}/beandoc"/>
        <beandoc outputDir="${build.dir}/beandoc">
            <fileset dir="${web.dir}/WEB-INF">
                <include name="*-servlet.xml"/>
                <include name="applicationContext*.xml"/>
            </fileset>
        </beandoc>

        <!-- To add graphs to the reports, download and install GraphViz from graphviz.org. -->
        <!-- 1. create a beandoc.properties and add the following line to it: -->
        <!-- compiler.dotExe=C:/Program Files/ATT/GraphViz/bin/dot.exe -->
        <!-- 2. Add beandocProps="beandoc.properties" to the <beandoc> task. -->
    </target>

Matt Raible made changes - 15/Dec/05 06:29 PM
Status Open [ 1 ] Resolved [ 5 ]
Resolution Fixed [ 1 ]