如何将 SShSession 向后移植到 Ant 1.7.1
由于我不会详细介绍的原因,我暂时坚持使用 Ant 1.7.1。我希望能够使用 SshSession Ant 任务 创建 SSH 隧道到我的一些服务器。但 SshSession 仅在 Ant 1.8.0 中引入。
我没有自定义 Ant 任务的经验。将此任务从 1.8.0 向后移植到 1.7.1 会很困难吗?我应该去哪里了解有关如何执行此操作的更多信息?
感谢您的帮助 !
I am stuck with Ant 1.7.1 for the moment for reasons I wont get into. I'd like to be able to use the SshSession Ant task to create SSH tunnels to some of my servers. But SshSession was introduced only in Ant 1.8.0.
I have no experience with custom Ant tasks. Would it be difficult to backport this task from 1.8.0 to 1.7.1 ? Where should I go to learn more on how to do that ?
Thanks for your help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 SShSession 任务的源与 ant 1.7 兼容。获取 此任务的源代码,并针对 ant 1.7 和 jsch jar 进行编译。然后创建一个指向您刚刚创建的类的 taskdef(jsch.jar 需要位于 ant lib 目录中或使用
-lib
选项指定),您应该可以开始了。It looks like the source for the SShSession task is compatible with ant 1.7. Get the source for this task, and compile against ant 1.7 and the jsch jar. Then create a taskdef pointing to the class you've just created (jsch.jar will need to be in the ant lib dir or specified using the
-lib
option) and you should be good to go.