1

我尝试编写一个使用jsch的简单 sbt 插件。由于安全原因(ecdsa),我的要求是在0.1.53中使用 jsch 。我已经在我的build.sbt文件中声明了依赖项:

libraryDependencies += "com.jcraft" % "jsch" % "0.1.53"

不幸的是org.scala-sbt:ivy2.3.0 引入了对0.1.46的依赖。SBT 说旧版本被驱逐了,尽管在运行时使用我的插件时我可以看到它仍在针对 0.1.46 jsch 运行。

[info]  com.jcraft:jsch
[info]      - 0.1.46
[info]          status: release
[info]          publicationDate: Thu Feb 02 13:39:27 CET 2012
[info]          resolver: sbt-chain
[info]          artifactResolver: sbt-chain
[info]          evicted: true
[info]          evictedData: latest-revision
[info]          homepage: http://www.jcraft.com/jsch/
[info]          isDefault: false
[info]          configurations: default, compile, runtime, default(compile), master
[info]          licenses: (Revised BSD,Some(http://www.jcraft.com/jsch/LICENSE.txt))
[info]          callers: org.scala-sbt:ivy:0.13.11
[info]      - 0.1.53
[info]          status: release
[info]          publicationDate: Fri Jun 05 17:32:00 CEST 2015
[info]          resolver: sbt-chain
[info]          artifactResolver: sbt-chain
[info]          evicted: false
[info]          homepage: http://www.jcraft.com/jsch/
[info]          isDefault: false
[info]          configurations: default, compile, runtime, default(compile), master
[info]          licenses: (Revised BSD,Some(http://www.jcraft.com/jsch/LICENSE.txt))
[info]          callers: com.evojam:sbt-ssh:0.1.1-SNAPSHOT (scalaVersion=2.10, sbtVersion=0.13), org.scala-sbt:ivy:0.13.11

我在 0.13.11 版本中使用sbt

我已将我的插件添加到测试项目中。运行我的 sbt 任务时,我收到明确的日志消息:[info] Local version string: SSH-2.0-JSCH-0.1.46 和关于不受支持的算法的错误,这使我得出结论,我的 jsch 版本已被某种方式覆盖。

问题是在编写 sbt 插件时如何处理库驱逐?

4

1 回答 1

0

也许你可以尝试:

dependencyOverrides += "com.jcraft" % "jsch" % "0.1.53"

但我怀疑 jsch 的 sbt 版本是在你的插件之前加载到 jvm 类路径中的。

更新到 ivy 2.4 存在 sbt 问题;这也将更新使用的 jsch 版本:https ://github.com/sbt/sbt/issues/1920

于 2016-05-11T13:55:58.667 回答