Bump blocking-slick

This commit is contained in:
Naoki Takezoe
2017-02-12 11:37:04 +09:00
parent 7a6a2471b1
commit 79d41ba57b
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ libraryDependencies ++= Seq(
"org.apache.httpcomponents" % "httpclient" % "4.5.1",
"org.apache.sshd" % "apache-sshd" % "1.2.0",
"org.apache.tika" % "tika-core" % "1.13",
"com.github.takezoe" %% "blocking-slick-32" % "0.0.6",
"com.github.takezoe" %% "blocking-slick-32" % "0.0.7-SNAPSHOT",
"joda-time" % "joda-time" % "2.9.6",
"com.novell.ldap" % "jldap" % "2009-10-07",
"com.h2database" % "h2" % "1.4.192",

View File

@@ -66,7 +66,7 @@ object Database {
}
private val db: SlickDatabase = {
SlickDatabase.forDataSource(dataSource)
SlickDatabase.forDataSource(dataSource, Some(dataSource.getMaximumPoolSize))
}
def apply(): SlickDatabase = db