build.xml 864 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="euc-kr"?>
  2. <!--
  3. Copyright 2006 Hyundai Information Technology Co., Ltd. All rights reserved.
  4. -->
  5. <project name="xpapps" default="build" basedir=".">
  6. <property name="shared.dir" location="${basedir}/../shared"/>
  7. <import file="${shared.dir}/script/buildweb.xml"/>
  8. <target name="init">
  9. <webinit/>
  10. </target>
  11. <target name="clean">
  12. <webclean/>
  13. </target>
  14. <target name="compile" depends="init" if="src.dir.present">
  15. <webcompile/>
  16. </target>
  17. <target name="build" depends="compile">
  18. <makejar/>
  19. </target>
  20. <target name="deploy" depends="build">
  21. <webdeploy/>
  22. </target>
  23. <target name="copy" depends="build">
  24. <webcopy/>
  25. </target>
  26. <target name="imgbuild" depends="compile">
  27. <makejar ifxpimg="true"/>
  28. </target>
  29. <target name="imgcopy" depends="imgbuild">
  30. <webcopy/>
  31. </target>
  32. </project>