【发布时间】:2013-09-12 14:04:24
【问题描述】:
尝试发布时: https://github.com/thetrav/http-stub-server-scala/blob/master/project/build.scala
测试框架依赖项正在泄漏到运行时依赖项中。 我已将其范围缩小到这一行:
"org.scalatest" %% "scalatest" % "2.0.M5b" % "test" withSources(),
问题似乎是 withSources() 没有在测试范围内发布
有没有办法让我在测试和开发中获取源代码,而不是在运行时?
【问题讨论】:
标签: scala maven testing dependencies sbt