Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在将 jsch-0.1.44.jar 添加到 ant/lib 目录时执行 SCP 任务。但是我想从本地 lib 目录加载并将其添加到类路径中。请您帮忙
内置任务用于自定义类路径的选项有限。
1) 将您的自定义 jars 放在 ${user.home}/.ant/lib 目录中
/home/mark/.ant └── lib ├── ivy.jar └── jsch.jar
这是我安装 jar 的地方,这些 jar 是我对标准 ANT 发行版的个人扩展
2) 在命令行中提供 jar 目录的位置
ant -lib /path/to/jsh/jar
3)您可以尝试按照此处的建议声明一个新任务: