我正在使用 sshexec,它依赖于 jsch-0.1.48.jar。我不能只把它放到 ant/lib 目录中,因为其他希望使用相同构建脚本的用户必须先在他们的机器上进行配置,然后才能这样做。
我想要做的是能够引用 jsch-0.1.48.jar 作为项目的一部分。目前,我把它放在 project/libs 目录中,我正在尝试类似:
<property name="lib" location="lib"/>
<taskdef name="sshexec" classname="org.apache.tools.ant.taskdefs.optional.ssh.SSHExec">
<classpath>
<pathelement location="${lib}/jsch-0.1.48.jar"/>
</classpath>
</taskdef>
<target name="sshcmd" description="ssh command">
<sshexec host="X.X.X.X" username="USER" password="PASS" command="cmd" trust="true"/>
</target>
但这不起作用:
C:\dev\trunk\project:>ant sshcmd
Buildfile: C:\dev\trunk\project\build.xml
BUILD FAILED
C:\dev\trunk\project\build.xml:275: taskdef A class needed by class org.apache.tools.ant.taskdefs.optional.ssh.SSHExec cannot be found: com/jcraft/jsch/Logger
using the classloader AntClassLoader[C:\dev\trunk\project\lib\jsch-0.1.48.jar]
Total time: 0 seconds