A Scala API for Datomic
You can find tagged releases described here and at Github.
To use Datomisca, just add following to your SBT config:
resolvers ++= Seq(
// to get Datomisca
resolvers += Resolver.bintrayRepo("dwhjames", "maven"),
// to get Datomic free (for pro, you must put in your own repo or local)
"clojars" at "https://clojars.org/repo"
)
libraryDependencies ++= Seq(
"com.github.dwhjames" %% "datomisca" % "0.7-RC1",
"com.datomic" % "datomic-free" % "0.9.4724"
)