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

c++ - list<myClass<int> * > sort -

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

java - why am i getting a "cannot resolve method" error on getApplication? -