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

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

customize file_field button ruby on rails -

SoapUI on windows 10 - high DPI/4K scaling issue -