在独立模式(不是Play应用程序的一部分)中使用Play的 anorm 包的最新版本(例如,2.3或2.4)的当前sbt语法是什么?
答案 0 :(得分:11)
在build.sbt
:
resolvers ++= Seq(
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/")
libraryDependencies ++= Seq(
"com.typesafe.play" %% "anorm" % "2.3.6")
请参阅example。
答案 1 :(得分:1)
Anorm现已发布如下,无需额外的解析器。
"org.playframework.anorm" %% "anorm" % "2.6.2"