Build SOA composties with Ant -
i have build automation setup in ant soa projects. recompiles code if there no change in code. can please suggest me way out can compile changed soa composites?
use uptodate ant.apache.org/manual/tasks/uptodate.html
<target name="anythingchanged"> <uptodate property="xmlbuild.notrequired" targetfile="${deploy}\xmlclasses.jar"> <srcfiles dir= "${src}/xml" includes="**/*.dtd"/> </uptodate> </target> <target name="xmlbuild" depends="anythingchanged" unless="xmlbuild.notrequired"> ... </target>
Comments
Post a Comment