我想使用scalax.io._
来操纵SBT的文件操作。
当我运行它时,我收到显示scalax is not found
的错误消息。
>sbt run
import scalax.io._
[error] ^
[error] iotest.scala:49: not found: object scalax
如何找到这个特定的库依赖项?
更一般的问题,如何获取任何库的库依赖信息? 例如,如果我需要在scala中使用actor,我需要指定一个库依赖项。如何找到库依赖?
答案 0 :(得分:7)
“任何库的库依赖信息”是库文档的一部分,作者应该发布不同项目管理工具的信息,包括。毕竟,开发一个难以使用的库的目的是什么?
使用http://search.maven.org/搜索库,当您搜索scala-io
时,您将获得可用的scala-io
库列表。
由于我从未使用过库,因此我从Scala IO Documentation复制了 ScalaIOExample 示例,以获得一个有效的示例。它需要分发为scalax.io
工件的scalax.file
和scala-io-file
个包。搜索工件会导致Artifact Details For com.github.scala-incubator.io:scala-io-file_2.10:0.4.2提供有关如何在依赖关系信息部分中使用Scala SBT的信息。
有了这个,我在一个sbt项目中创建了以下build.sbt
:
scalaVersion := "2.10.3"
libraryDependencies += "com.github.scala-incubator.io" %% "scala-io-file" % "0.4.2"
它会将scala-io-file_2.10-0.4.2.jar添加到类路径中,并在项目中执行run会产生以下结果:
$ sbt run
[info] Loading global plugins from /Users/jacek/.sbt/0.13/plugins
[info] Loading project definition from /Users/jacek/sandbox/stackoverflow/sbt-scala-io/project
[info] Set current project to sbt-scala-io (in build file:/Users/jacek/sandbox/stackoverflow/sbt-scala-io/)
[info] Running ScalaIOExample
Not interrupting system thread Thread[Keep-Alive-Timer,8,system]
Not interrupting system thread Thread[Keep-Alive-SocketCleaner,8,system]
[success] Total time: 5 s, completed Dec 31, 2013 11:16:42 PM