使用 Ant 任务将 RuleApps 部署到 Bluemix 上的业务规则服务

Deploy RuleApps to the Business Rules service on Bluemix using an Ant task

我在 IBM ODM 工作,正在将 RuleApp 部署到 Bluemix 上的业务规则服务。是否可以使用 Ant 任务 res-deploy?

我发现我可以通过指定 hostnameportnumbersecuredpassword 属性来使用 res-deploy Ant 任务,如下所示:

< target name="deploy-ruleapp" >
        < res-deploy hostname="brsv2-99999999.ng.bluemix.net"
         mergingpolicy="ADD_AT_END_MERGING_POLICY" 
         portnumber="443" 
         secured="true" 
         userid="resAdmin" 
         password="xxxxxxxxxxxx" file="myruleapp.jar" / >
< / target >

hostname 是从“连接设置”选项卡的 URL 中检索到的。