Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Quartz
- resource
- Windows
- Windows 10
- maVen
- find
- profile
- lsof
- ssh
- context
- vscode
- tomcat
- 네트워크
- bash
- xargs
- port
- netsh
- Mac
- Source
- 줄바꿈 문자
- grep
- JavaScript
- plugin
- GIT
- Eclipse
- IntelliJ
- VirtualBox
- web.xml
- 단축키
- import
Archives
- Today
- Total
develog
[java] Ant copy 본문
<?xml version="1.0" encoding="UTF-8"?>
<project name="MyProj" default="init" basedir=".">
<!-- props -->
<target name="props">
<property name="SRC_DIR" value="../src/mxml/WEB-INF" />
<property name="DST_DIR" value="../WebRoot/WEB-INF" />
</target>
<!-- init -->
<target name="init">
<antcall target="delete" />
<antcall target="copy" />
</target>
<!-- delete -->
<target name="delete" depends="props">
<delete quiet="true" file="$/web.xml" />
<delete quiet="true" includeemptydirs="true">
<fileset dir="$/context" />
</delete>
<delete quiet="true" includeemptydirs="true">
<fileset dir="$/flex" />
</delete>
</target>
<!-- copy -->
<target name="copy" depends="props">
<copy file="$/web.xml" todir="$" />
<copy todir="$/context">
<fileset dir="$/context" />
</copy>
<copy todir="$/flex">
<fileset dir="$/flex" />
</copy>
</target>
</project>
'Dev > Java' 카테고리의 다른 글
Java 한글 Encoding (0) | 2014.03.04 |
---|---|
java 정규표현식 (0) | 2014.02.21 |
variable arguments 2 (0) | 2014.02.14 |
java for break label (0) | 2014.02.12 |
iBatis, remapResults="true" (0) | 2014.01.16 |
Comments