Ant
文章平均质量分 61
「已注销」
这个作者很懒,什么都没留下…
展开
-
ant-path
1、path是ant内置的一种datatype,作用是声明路径之类的东西,在官方的manual中也叫做Path-like Structures,一般是这样声明的 Xml代码 path id="id"> pathelement location="location1" /> pathelement location="location2" /原创 2012-08-10 15:35:17 · 2120 阅读 · 0 评论 -
ant 通配符
我们常用的匹配模式有ANT模式,比如acegi可以用PATTERN_TYPE_APACHE_ANT来使用ANT匹配模式,那什么是ANT匹配模式呢。 ANT通配符有三种: 通配符 说明 ? 匹配任何单字符 * 匹配0或者任意数量的字符 ** 匹配0或者更多的目录 例子: UR转载 2012-08-10 15:40:19 · 1730 阅读 · 0 评论 -
ant 的build.xml中的project标签
标签时构建文件的根标签。它可以有多个内在属性,就如代码中所示,其各个属性的含义分别如下。 (1) default表示默认的运行目标,这个属性是必须的。原创 2012-08-14 17:29:08 · 1823 阅读 · 0 评论 -
【ant】ant property 总结
特点 大小写敏感; 不可改变,先到先得,谁先设定,之后的都不能改变。 怎样设置 1 、设置 name 和 value 属性值,比如: 2 、 设置 name 和 refid 属性值,比如: ,其中dao.compile.classpath 在别的地方定义。 3 、设置 name 和 location 属性值,比如: ,即将 srcdir 的值设 置为:当前项目根转载 2013-07-12 16:07:33 · 1608 阅读 · 0 评论 -
用Ant打Jar包--在Manifest中引用Classpath
在打jar包时,往往需要在manifest文件中设置Class-Path,包含一些依赖的第三方jar包,使得以“java -jar xxx.jar”方式启动的jar包能正确找到依赖的类。 网上大多演示使用打jar包的例子都是像这样的:转载 2013-11-19 16:20:36 · 2247 阅读 · 0 评论 -
正则表达式 不包含指定字符串
参考资料 http://www.imkevinyang.com/2009/08/%E4%BD%BF%E7%94%A8%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F%E6%89%BE%E5%87%BA%E4%B8%8D%E5%8C%85%E5%90%AB%E7%89%B9%E5%AE%9A%E5%AD%97%E7%AC%A6%E4%B8%B2%E7%9转载 2015-04-08 21:48:57 · 7040 阅读 · 0 评论 -
ant
target> target name="compile" depends="init" description="compile the source " > javac srcdir="${src}" destdir="${build}"/> target> target name="dist" depends="compi转载 2015-04-08 21:48:53 · 757 阅读 · 0 评论