[Index]

oddball


Create an Oddball from various sources. Primarily intended to be used with the oj-resolve project to load a maven dependency as an Oddball.

See also oddballs.


Property Summary

paths Paths to create an Oddball from.
urls URLs to create an Oddball from.

Example Summary

Example 1 Loading two Oddballs.

Property Detail

paths

Configured ByELEMENT
AccessWRITE_ONLY
RequiredEither this or URLs is required.

Paths to create an Oddball from.

urls

Configured ByELEMENT
AccessWRITE_ONLY
RequiredEither this or Paths is required.

URLs to create an Oddball from.


Examples

Example 1

Loading two Oddballs.

<oddjob id="this">
    <job>
        <oddjob file="${this.args[0]}/test/launch/oddballs-launch.xml">
            <descriptorFactory>
                <oddballs>
                    <oddballs>
                        <oddball>
                            <paths>
                                <file file="${this.args[0]}/test/oddballs/apple/classes"/>
                            </paths>
                        </oddball>
                        <oddball>
                            <paths>
                                <file file="${this.args[0]}/test/oddballs/orange/classes"/>
                            </paths>
                        </oddball>
                    </oddballs>
                </oddballs>
            </descriptorFactory>
        </oddjob>
    </job>
</oddjob>


(c) R Gordon Ltd 2005 - Present