1

我的项目使用 Scala 2.9.3,我想将Spire用于2.9.2. 我在我的 sbt 构建文件中指定什么来获取 Spire for 2.9.2?

我试过了

"org.spire-math" %% "spire" % "0.6.0"

但它无法寻找 Scala 2.9.3。

4

1 回答 1

2
  • 必须在相应的库名称后面加上下划线和所需的 scala 版本,并验证库的适当版本号(在我的情况下为 0.3.0)

    “org.spire-math”%“spire_2.9.2”%“0.3.0”

于 2013-10-25T21:25:38.857 回答