<artifact>
<libraryDef>
<library>
<library-policy>
<library-type>
<library-repository>
<library-urlrepository>
<library-mavenrepository>
<library-repositoryset>
<create-artifact>
<subprojects>
<run-subproject>
<replace-target>
Finally, our build file needs targets to make it friendly to developers and automated build systems. <target name="main" description="Primary developer target" depends="compile, test" /> <target name="all" depends="clean, main, dist" /> <target name="clean" description="Clean up the generated files"> <delete dir="${work.dir}" /> <delete dir="${dist.dir}" /> </target>
Finally, our build file needs targets to make it friendly to developers and automated build systems.
<target name="main" description="Primary developer target" depends="compile, test" /> <target name="all" depends="clean, main, dist" /> <target name="clean" description="Clean up the generated files"> <delete dir="${work.dir}" /> <delete dir="${dist.dir}" /> </target>