`
lion222
  • 浏览: 125189 次
  • 来自: ...
文章分类
社区版块
存档分类
最新评论

java antcontrib antcontrib.properties祥解

阅读更多

提供 <if> 和 <for> 等节点的支持

 


if=net.sf.antcontrib.logic.IfTask
foreach=net.sf.antcontrib.logic.ForEach
throw=net.sf.antcontrib.logic.Throw
trycatch=net.sf.antcontrib.logic.TryCatchTask
switch=net.sf.antcontrib.logic.Switch
outofdate=net.sf.antcontrib.logic.OutOfDate
runtarget=net.sf.antcontrib.logic.RunTargetTask
timestampselector=net.sf.antcontrib.logic.TimestampSelector
propertycopy=net.sf.antcontrib.property.PropertyCopy
osfamily=net.sf.antcontrib.platform.OsFamily
shellscript=net.sf.antcontrib.platform.ShellScriptTask
pathtofileset=net.sf.antcontrib.property.PathToFileSet
propertyselector=net.sf.antcontrib.property.PropertySelector
propertyregex=net.sf.antcontrib.property.RegexTask
sortlist=net.sf.antcontrib.property.SortList
urlencode=net.sf.antcontrib.property.URLEncodeTask
compilewithwalls=net.sf.antcontrib.walls.CompileWithWalls
verifydesign=net.sf.antcontrib.design.VerifyDesign
forget=net.sf.antcontrib.process.ForgetTask

antcallback=net.sf.antcontrib.logic.AntCallBack
antfetch=net.sf.antcontrib.logic.AntFetch
assert=net.sf.antcontrib.logic.Assert
bool=net.sf.antcontrib.logic.condition.BooleanConditionTask
limit=net.sf.antcontrib.process.Limit
post=net.sf.antcontrib.net.PostTask
stopwatch=net.sf.antcontrib.perf.StopWatchTask
var=net.sf.antcontrib.property.Variable

inifile=net.sf.antcontrib.inifile.IniFileTask

antclipse=net.sf.antcontrib.antclipse.ClassPathTask

antserver=net.sf.antcontrib.antserver.server.ServerTask
remoteant=net.sf.antcontrib.antserver.client.ClientTask

# Tasks Requiring Ant 1.6 or higher
#for=net.sf.antcontrib.logic.For
math=net.sf.antcontrib.math.MathTask

分享到:
评论

相关推荐

    Generate the JUNIT report by Ant and Junit

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="classpath"/&gt; **/*Test.java"/&gt; ``` 在这个示例中,`build.properties`文件可能包含项目的属性,如类路径...

    ant-contrib-1.jar工具

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties"&gt; &lt;pathelement location="path/to/ant-contrib-1.0b3.jar"/&gt; ... , item2, item3" target="do-something" param="current.item"/&gt; ... ``...

    使用Ant构建批量压缩js、css文件脚本

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties" /&gt; &lt;taskdef name="yuicompress" classname="net.sf.antcontrib.java.YuiCompressTask"&gt; &lt;pathelement location="path/to/yui-compressor-2.4.8....

    ant-contrib-0.2.jar.zip

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties"&gt; &lt;pathelement location="path/to/ant-contrib-0.2.jar"/&gt; ``` 这样,就可以在构建脚本中使用ant-contrib提供的任务了。例如,可以使用任务...

    ant lib ant 所有lib包

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties"&gt; &lt;pathelement location="path/to/ant-contrib-1.0b2.jar"/&gt; ``` 然后我们可以在构建脚本中使用`for`任务: ```xml **/*.java"/&gt; ...

    ant-contrib-r170.jar.zip

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="ant.contrib.classpath"/&gt; ``` 在这个过程中,`&lt;taskdef&gt;`元素用于定义Ant Contrib中的任务,`resource`属性指定了包含任务定义的...

    apache 解压zip文件

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="path/to/ant-contrib.jar"/&gt; &lt;unzip src="path/to/your/zipfile.zip" dest="destination/directory"/&gt; &lt;!-- 如果需要解压后执行...

    ant的build.xml模板

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${lib.dir}/ant-contrib.jar"/&gt; ``` 这行代码引入了Ant Contrib库中的额外任务。 4. **目标定义**: 目标(Target)是一系列任务的...

    ant上传文件使用帮助和相关jar包

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="lib/ant-contrib.jar"/&gt; &lt;scp trust="yes" file="localfile.txt" todir="username@hostname:/remotedir/" keyfile="path/to/private...

    SSH2集成+ant打包

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="build.path"/&gt; &lt;sshexec host="yourserver.com" username="username" password="password" command="mkdir -p /var/...

    使用svnant插件让ant支持从svn更新项目

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="path/to/ant-contrib.jar"/&gt; &lt;typedef name="svn" classname="org.tigris.subversion.svnant.SvnTask" classpath="path/to/svnant.jar"/...

    Ant 批处理 Unicode转码

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties"&gt; &lt;pathelement location="lib/ant-contrib.jar"/&gt; ``` 这里的`ant-contrib.jar`需要自行下载并放在`lib`目录下。 除了`&lt;iconv&gt;`,还可以使用...

    ant-contrib-1.0b3-bin.jar

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties"&gt; ${ant.home}/lib/ant-contrib-1.0b3-bin.jar"/&gt; &lt;property name="src.dir" value="src"/&gt; &lt;property name="build.dir" value="build"/&gt; ...

    Android ant 多渠道批量打包解决方案

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties"&gt; &lt;pathelement location="path/to/ant-contrib-1.0b3.jar"/&gt; ``` - 定义一个用于多渠道打包的目标,如`release-all`,在其中使用`foreach`...

    使用Mybatis Generator结合Ant脚本快速自动生成Model、Mapper等文件的方法

    &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="classpath"/&gt; &lt;property name="generatorConfigFile" location="generatorConfig.xml"/&gt; &lt;java classname="org.mybatis.generator....

    ant打包及整合质量控制插件

    在IT行业中,构建工具是开发...&lt;taskdef resource="net/sf/antcontrib/antlib.xml" classpath="lib/ant-contrib.jar"/&gt; &lt;taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask" classpath="lib/pmd.jar"/&gt; ...

    自动构建持续集成技术

    - `build.xml`文件中定义了外部包的引用,例如通过`&lt;taskdef resource="net/sf/antcontrib/antlib.xml"/&gt;`引入Ant-contrib扩展包,增强了Ant的功能。 - **其他任务**:虽然文档中没有详细介绍其他任务的具体内容,...

Global site tag (gtag.js) - Google Analytics