我需要在我的sbt插件的设置阶段抓住对{1}}特定工件的引用。
我试过了:
File
,但它只包含System.getProperty("java.class.path")
jar sbt-launch
设置中获取已解析的sbt jar,但它在列表中没有任何插件的jar! (只有正在编译的应用程序的jar)如果没有手动调用Ivy API,有没有办法让update.value
获得插件的jar依赖?
注意:这是how to write an sbt plugin to launch the app with an agent的一个非常具体的部分,被分解为一个单独的问题。
答案 0 :(得分:0)
override val projectSettings = Seq(
libraryDependencies += "com.github.fommil.lion" %% "agent" % "1.0-SNAPSHOT",
javaOptions ++= Seq(s"-Dhack=${update.value}}")
)
有参考资料!