ant 에서 copy 작업에서 디렉터리 제외 시키는 예제
- OS & Program/JAVA
- 2010. 12. 1. 17:30
*** 검색어: nabiro, java, ant, copy, 제외, 디렉터리, directory, exclude
<?xml version="1.0" encoding="UTF-8" ?>
<project name="ACT" default="all" basedir=".">
<!-- copy test -->
<target name="copy" description="copy test">
<echo message="COPY RESOURCE(S) TO WEB BUILD DIR....." />
<copy todir="./test" overwrite="true">
<fileset dir="./WEB">
<!-- 2010.12.01 added -->
<exclude name="WEB-INF/**" />
<exclude name="report/**" />
<exclude name="rp/**" />
<exclude name="tx/**" />
<exclude name="upload/**" />
</fileset>
</copy>
</target>
<!-- execute -->
<target name="all" depends="copy" description="copy test">
<echo message="copy test" />
</target>
</project>
위와같이 build.xml 파일을 생성하면 copy 할 때 WEB-INF, report, rp, tx, upload 디렉터리 및 이하의 파일들은 제외됩니다.
'OS & Program > JAVA' 카테고리의 다른 글
WebLogic 을 사용하다 만난 기묘한 에러와 해결 방법 (0) | 2011.02.06 |
---|---|
ant에서 사용하는 build.xml 파일의 encoding 지정하는 방법 (0) | 2011.01.25 |
JAVA에서 상속을 이용한 예제 (0) | 2010.08.08 |
JAVA 에서 this(매개변수) 생성자 예제 (0) | 2010.08.03 |
JAVA 클래스 생성자에서 this() 생성자 사용시 유의 사항 (0) | 2010.08.03 |