一旦我研究了蚂蚁,这很容易!
当我构建“基础平台”时,我将其作为最终的 ant 目标;
<target name ="install-as-platform-into-netbeans" depends="build-zip">
<unzip src="${basedir}/dist/${ant.project.name}.zip" dest="${basedir}/dist"/>
<propertyfile file="${user.properties.file}">
<entry key="nbplatform.${ant.project.name}.harness.dir" value="${nbplatform.default.harness.dir}"/>
<entry key="nbplatform.${ant.project.name}.label" value="${ant.project.name}"/>
<entry key="nbplatform.${ant.project.name}.netbeans.dest.dir" value="${basedir}/dist/${ant.project.name}"/>
<entry key="nbplatform.${ant.project.name}.sources" value="${basedir}"/>
</propertyfile>
然后我必须在第二次构建中将此平台设置为“活动平台”;
<target name="set-as-active-platform">
<propertyfile file="${basedir}/nbproject/platform.properties">
<entry key="nbplatform.active" value="NAME-OF-PREVIOUS-PLATFORM"/>
</propertyfile>
</target>
一个明显的缺点是我必须将前一个平台的名称编码到 NAME-OF-PREVIOUS-PLATFORM 中,但名称不会经常更改,所以没什么大不了的。