如何使用新创建的属性文件覆盖某些现有属性?
这是必需的结构:
initially load Master.properties
generate new.properties
load new.properties and master.properties
run master.xml (ANT script)
我们的想法是Master.properties会生成一些应该被new.properties替换的产品版本。但是,Master.properties中的其他属性应保持不变。
阅读this没有帮助,因为我不知道如何加载new.properties文件
编辑这是ANT脚本:
<project name="nightly_build" default="main" basedir="C:\Work\NightlyBuild">
<target name="init1">
<sequential>
<property file="C:/Work/NightlyBuild/master.properties"/>
<exec executable="C:/Work/Searchlatestversion.exe">
<arg line='"/SASE Lab Tools" "${Product_Tip}/RELEASE_"'/>
</exec>
<sleep seconds="10"/>
<property file="C:/Work/new.properties"/>
</sequential>
</target>
<target name="init" depends="init1">
<sequential>
<echo message="The product version is ${Product_Version}"/>
<exec executable="C:/Work/checksnapshot.exe">
<arg line='-NightlyBuild ${Product_Version}-AppsMerge' />
</exec>
<sleep seconds="10"/>
<property file="C:/Work/checksnapshot.properties"/>
<tstamp>
<format property="suffix" pattern="yyyy-MM-dd.HHmm"/>
</tstamp>
</sequential>
</target>
<target name="main" depends="init">
<echo message="loading properties files.." />
<echo message="Backing up folder" />
<move file="C:\NightlyBuild\NightlyBuild" tofile="C:\NightlyBuild\NightlyBuild.${suffix}" failonerror="false" />
<exec executable="C:/Work/sortfolder.exe">
<arg line="6" />
</exec>
<exec executable="C:/Work/NightlyBuild/antc.bat">
</exec>
</target>
</project>
在上面的脚本中,<exec executable="C:/Work/NightlyBuild/antc.bat">
将运行Master.xml ANT脚本。此Master.xml将加载Master.properties
:
<project name="Master ANT Build" default="main" >
<taskdef name="CFileEdit" classname="com.ANT_Tasks.CFileEdit"/>
<!-- ========================================================== -->
<!-- init: sets global properties -->
<!-- ========================================================== -->
<target name="init">
<property environment="env"/>
<!-- ========================================================== -->
<!-- Set the timestamp format -->
<!-- ========================================================== -->
<property file="Master.properties"/>
...
</project>
答案 0 :(得分:2)
您应该可以通过查看加载(或以其他方式指定)属性值的顺序来解决此问题。您可能根本不需要覆盖属性值,这是核心Ant不支持的内容。
也许您可以将Master.properties分成两个文件 - 一个在生成new.properties之前加载,另一个在之后加载?
也许你根本不需要生成new.properties。
你能否详细介绍一下你需要做什么?
既然您最终分叉了一个新的Ant进程(exec antc.bat),那么这不会启动一个新的环境吗?如果它只是加载Master.properties,那么它们将是唯一的属性。
不确定你的antc.bat是做什么的,但以这种方式从Ant执行Ant是非常不寻常的。有两个标准任务可能很有用 - Ant和AntCall。
从以后的评论中继续运行......
让我们说而不是这样做:
<exec executable="antc.bat">
你做了类似的事情:
<ant file="Master.xml" inheritall="false">
<property name="Product_Version" value="${Product_Version}"/>
</ant>
我认为这是朝着你想要的方向发展的。您有选择地传递通过加载new.properties获得的特定值。请参阅Ant task的文档。
如果您仍然遇到在加载new.properties之前已经定义了Product_Version的问题,那么我会说获取生成new.properties的脚本以输出具有不同名称的版本,例如New_Product_Version
。然后调用这样的master构建:
<ant file="Master.xml" inheritall="false">
<property name="Product_Version" value="${New_Product_Version}"/>
</ant>
答案 1 :(得分:1)