build.xml 717 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="euc-kr"?>
  2. <!--
  3. Copyright 2006 Hyundai Information Technology Co., Ltd. All rights reserved.
  4. -->
  5. <project name="userdeptinfoxp" 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. </project>