蚂蚁任务不起作用

时间:2013-12-23 13:45:38

标签: ant websphere

我运行以下代码在websphere 7中运行我的代码,

<taskdef name="wasejbjar" classname="com.ibm.websphere.ant.tasks.WsEjbDeploy" classpath="D:/IBM/WebSphere/AppServer/plugins/com.ibm.ws.runtime.jar">
        <classpath> 
            <pathelement path="D:/IBM/WebSphere/AppServer/plugins/com.ibm.ws.runtime.jar" />             
        </classpath> 
    </taskdef>
  <wasejbjar inputJar="${build.root.dir}/ejbtemp/${undeployed.ejb.name}-TMP.jar" wasHome="D:/IBM/WebSphere/AppServer/"  workingDirectory="${build.root.dir}/ejbtemp" outputJar="${build.lib.dir}/${undeployed.ejb.name}.jar" noValidate="false" noWarnings="false" noInform="true" trace="false" quiet="false"/>

当我尝试运行我的websphere 7时,我总是收到错误,无法解析setupCmdLine:null \ bin \ setupCmdLine.bat(系统找不到指定的路径)。

有人可以帮忙吗?。

1 个答案:

答案 0 :(得分:0)

这意味着Ant不知道服务器上安装WebSphere的位置。 This IBM post建议您需要将user.install.root设置为WebSphere安装目录。