1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<module name="commons-cli">
<description>Commons CLI</description>
<url href="http://jakarta.apache.org/commons/sandbox/cli.html"/>
<cvs repository="jakarta"/>
<!-- This is really the cvs module. We need to change this but -->
<!-- I will leave this for now until everything works. -->
<project name="commons-cli">
<!-- Standard Maven target to produce Javadocs, source -->
<!-- and binary distributions. -->
<ant buildfile="build-gump.xml" target="jar">
<property name="maven.final.name" value="commons-cli-@@DATE@@"/>
</ant>
<package>org.apache.commons.cli</package>
<!-- All Maven projects need Ant and Xerces to build. -->
<depend project="jakarta-ant"/>
<depend project="xml-xerces"/>
<depend project="commons-logging"/>
<depend project="commons-lang"/>
<work nested="target/classes"/>
<home nested="target"/>
<jar name="commons-cli-@@DATE@@.jar"/>
<javadoc nested="docs/apidocs"/>
<nag from="Maven Developers <turbine-maven-dev@jakarta.apache.org>"
to="commons-dev@jakarta.apache.org"/>
</project>
</module>
|