History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: QUARTZ-351
Type: Task Task
Status: Closed Closed
Resolution: Fixed
Priority: Minor Minor
Assignee: James House
Reporter: Jasper Rosenberg
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Quartz Scheduler

Include jboss/oracle/weblogic subproject source in javadoc

Created: 03/Mar/06 03:20 PM   Updated: 03/Mar/06 04:48 PM
Component/s: Documentation
Affects Version/s: 1.6, 1.5.1, 1.5.2
Fix Version/s: 1.6, 1.5.2


 Description  « Hide
Need to change javadocs target in osbuild.xml to support an alternate sourcepath than just ${src.java} so quartz build can include its oracle/jboss/weblogic subprojects.

To do this, introduce property "javadoc.sourcepath" which will be passed to the javadoc task's sourcepath attribute and will default to ${src.java} to maintain backwards compatibility.

The Quartz build.xml will then override the property "javadoc.sourcepath" to conditionally include the src for the oracle/jboss/weblogic subprojects like so:

<pathconvert property="javadoc.sourcepath">
        <path>
            <dirset dir="${src}">
                <patternset>
                    <include name="java"/>
                    <include name="oracle" if="oracle.present"/>
                    <include name="weblogic" if="weblogic.present"/>
                    <include name="jboss" if="jboss.present"/>
                </patternset>
            </dirset>
        </path>
    </pathconvert>



 All   Comments   Change History      Sort Order:
There are no comments yet on this issue.