My Deploy在Eclipse中运行良好,但每当我尝试运行我的ant脚本时。我收到以下错误消息。
[警告] SRVE0190E:找不到文件:/ console / api / adapters / upload
我已经包括了下面描述的罐子。我使用的蚂蚁脚本是:
<project basedir="." default="deploy">
<property name="worklight-ant-deployer" location="worklight-ant-deployer.jar" />
<target name="init">
<taskdef resource="com/worklight/ant/defaults.properties">
<classpath>
<pathelement location="./lib/worklight-ant-deployer.jar"/>
</classpath>
</taskdef>
</target>
<target name="deploy" depends="init">
<adapter-deployer deployable="/pathTo/MyAdapter.adapter" worklightServerHost="http://localhost:10080/MyApp"/>
</target>
</project>
答案 0 :(得分:0)
我相信你的ant任务不是Worklight 6.2的最新版本。查看以下用户文档主题:Updating deployment scripts
该文档详细说明了在脚本中进行的更改,以便再次通过ant任务进行部署。
有关在Worklight 6.2中使用Ant的更多信息,请访问:Administering Worklight applications through ANT。