用ant注册netbeans平台



我们正在开发一个netbeans平台,作为其他netbeans平台的基础。如果有一个可以将其作为平台安装在当前netbeans环境中的Ant目标,那就太好了。

当我们手动操作时,我们必须做工具-> NetBeans平台->添加平台等等。

在构建服务器(jenkins)中,我们必须有一个修改build.properties的批处理脚本。太乱了……

在一个理想的世界里,我可以用Ant做这件事,但我根本不知道Ant,所以我想知道…有办法吗?

一旦我看到蚂蚁,这就很容易了!

当我构建"基础平台"时,我将此作为最终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,但是名称不会经常更改,所以这没什么大不了的。

相关内容

  • 没有找到相关文章

最新更新