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 |
Tags
- profile
- 줄바꿈 문자
- JavaScript
- bash
- import
- VirtualBox
- IntelliJ
- Windows 10
- 네트워크
- vscode
- netsh
- maVen
- 단축키
- find
- web.xml
- tomcat
- grep
- Eclipse
- Quartz
- xargs
- context
- Source
- Windows
- plugin
- lsof
- ssh
- port
- resource
- GIT
- Mac
Archives
- Today
- Total
develog
[ant] for 본문
ant xml
<?xml version="1.0" encoding="UTF-8"?> <project name="bms-global" default="target1" xmlns:ac="antlib:net.sf.antcontrib"> <taskdef uri="antlib:net.sf.antcontrib" resource="net/sf/antcontrib/antlib.xml" classpath="./lib/ant-contrib-1.0b3.jar" /> <target name="target1"> <echo message="The first five letters of the alphabet are:" /> <ac:for list="a,b,c,d,e" param="letter"> <sequential> <echo>Letter @{letter}</echo> </sequential> </ac:for> </target> </project> |
필요한 파일
ant-contrib-1.0b3.jar |
http://ant-contrib.sourceforge.net/
Ant-Contrib Tasks
Contents The Ant-Contrib project is a collection of tasks (and at one point maybe types and other tools) for Apache Ant. This Software is distributed under the Apache Software License. First you must install Apache Ant itself, most of the Ant-Contrib tasks
ant-contrib.sourceforge.net
Comments