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

Popular posts from this blog

javascript - Hide toolbar of pdf file opened inside iframe using firefox -

Copy range with conditional formatting -

Ansible - ERROR! the field 'hosts' is required but was not set -