[Notice] Announcing the End of Demo Server [Read me]
Keesun Baik 2015-01-08
Added latest h2 dependency
* Yobi users who upgraded to Play 2.3.x will have a problem when running the Yobi with a bug
which is originated from H2 1.3.175v (https://code.google.com/p/h2database/issues/detail?id=543)
* Added H2's the latest version 1.4.184 to build.sbt,
and It works well without editing PlayFramework modules's dependency files.

* As the latest version of H2 suggests, you may have to update application.conf's 'db.default.url' value
to not to use implicit relative path.
* If you use implicit relative path, then you have to change it to use explicite relative path like this:
jdbc:h2:file:yobi;MODE=PostgreSQL -> jdbc:h2:file:~/yobi;MODE=PostgreSQL
@45e1288acf67d64030242341d097714db7052fc5
build.sbt
--- build.sbt
+++ build.sbt
@@ -16,6 +16,7 @@
   javaJdbc,
   javaEbean,
   // Add your project dependencies here,
+  "com.h2database" % "h2" % "1.4.184",
   // Core Library
   "org.eclipse.jgit" % "org.eclipse.jgit" % "3.5.3.201412180710-r",
   // Smart HTTP Servlet
Add a comment
List