首页 > 代码库 > 前端部署ant+yuicompressor文件压缩+获取版本号+SSH发布(部分代码)
前端部署ant+yuicompressor文件压缩+获取版本号+SSH发布(部分代码)
文件压缩:
<apply executable="java" parallel="false" failonerror="true" dest="../../release/publish/ecshop" append="false" force="true"> <fileset dir="../../release/publish/ecshop"> </fileset> <arg line="-jar" /> <arg path="${compressor}" /> <arg line="--charset utf8" /> <srcfile /> <arg line="-o" /> <mapper type="glob" from="*.js" to="*.js" /> <targetfile /> </apply>
SSH发
<scp todir="${username_c}:${password_c}@${host_c}://usr/rete" trust="true"> <fileset dir='../../release/${version}/test/2儿童/'> <exclude name="${conf}" /> <exclude name="${Runtime}" /> <exclude name="${nbproject}" /> </fileset> </scp>
通过SVN info获取SVN版本号通过调用cmd命令行,获取SVN版本,存放到buildRevision文件中,然后再引进buildRevision这个文件。读取版本号的值。
<echo level="info" message="正在获取指定目录的版本号..." /> <exec dir = "${svnurl}" executable = "svn.exe" output = "buildRevision"> <arg line = "info" /> <redirector> <outputfilterchain> <linecontainsregexp> <regexp pattern="^Revision:"/> </linecontainsregexp> <tokenfilter> <replaceregex pattern="Revision\:\s*" flags="s" replace="Revision="/> </tokenfilter> </outputfilterchain> </redirector> </exec> <property file="buildRevision" /> <property file="buildRevision_Inherit" /> <echo message="获取成功,版本号是${Revision}"/> <echo level="info" message="正在生成发布指定目录..." />
其中
<redirector> <outputfilterchain> <linecontainsregexp> <regexp pattern="^Revision:"/> </linecontainsregexp> <tokenfilter> <replaceregex pattern="Revision\:\s*" flags="s" replace="Revision="/> </tokenfilter> </outputfilterchain> </redirector>
这个的意思是过滤掉SVNINFO命令行中其他,只留下Revision=版本号
然后再引进就可以了。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。