我想在我的 Scala 项目(使用 SBT)中使用 AnormCypher。
我没有使用 Play!框架。我仍然可以使用 AnormCypher 吗?
如果是,我该如何安装库。没有.jar 文件什么的。
正如官方github页面所说,我添加了
resolvers ++= Seq(
"anormcypher" at "http://repo.anormcypher.org/",
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
)
libraryDependencies ++= Seq(
"org.anormcypher" %% "anormcypher" % "0.6.0"
)
到我的 build.sbt。
但 Intellij 生产Unresolved Dependencies errors
.
我是 scala 和 neo4j 的新手,我迷路了。如果有人可以帮助并告诉我该怎么做。
谢谢你。