Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <target name="buildSubProjects" depends="init">
  2. <for list="${projects}" target="buildSubProject" param="project"
  3. delimiter=",">
  4. </for>
  5. </target>
  6.  
  7. <target name="buildSubProject">
  8. <echo message="Build project: ${project}"/>
  9.  
  10. <ant antfile="build/build.xml" dir="../${project}" target="cleanAndCompile" inheritall="false" inheritrefs="false">
  11. <property name="tomcat.dir" value="${tomcat.dir}"/>
  12. </ant>
  13. <copy todir="${weblib.dir}" preservelastmodified="true">
  14. <fileset dir="../${project}/dist">
  15. <include name="*.jar" />
  16. </fileset>
  17. </copy>
  18. </target>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement