Play Framework からNeo4j(AnormCypher)へアクセスする際の設定

環境

  • play 2.2.2
  • Scala 2.10.3

build.sbt

name := "Project Name"

version := "1.0-SNAPSHOT"

resolvers ++= Seq(
  "anormcypher" at "http://repo.anormcypher.org/",
  "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
)

libraryDependencies ++= Seq(
  jdbc,
  anorm,
  cache,
  "postgresql" % "postgresql" % "9.1-901.jdbc4",
  "org.anormcypher" %% "anormcypher" % "0.4.4"
)

play.Project.playScalaSettings