aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorStewart Stewart <stewinsalot@gmail.com>2016-12-09 13:27:37 -0800
committerStewart Stewart <stewinsalot@gmail.com>2016-12-09 13:27:37 -0800
commit3eccfb84e270802cb151b58cea3a945bb71d76d7 (patch)
treeb2d9aaf3316449507d00e1055c816f3d440ed4e4 /README.md
parentc7e0cc5accede901f5bc6f54c51aafc69a5fa1e9 (diff)
downloadslick-codegen-plugin-3eccfb84e270802cb151b58cea3a945bb71d76d7.tar.gz
slick-codegen-plugin-3eccfb84e270802cb151b58cea3a945bb71d76d7.tar.bz2
slick-codegen-plugin-3eccfb84e270802cb151b58cea3a945bb71d76d7.zip
update recomended postgres jdbc driver
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index e02924c..2a432fc 100644
--- a/README.md
+++ b/README.md
@@ -14,9 +14,11 @@ credentials += Credentials("Artifactory Realm", "drivergrp.jfrog.io", "sbt-publi
addSbtPlugin("xyz.driver" % "sbt-slick-codegen" % "0.8")
// Replace with the appropriate jdbc driver for your database:
-libraryDependencies += "org.postgresql" % "postgresql" % "9.4.1212"
+libraryDependencies += "org.postgresql" % "postgresql" % "9.3-1104-jdbc41"
```
+(note that postgres jdbc driver `9.4.x` will not expose columns in certain metadata "tables", causing generated code not to compile)
+
### build.sbt
Minimally, define `codegenUri`, `codegenPackage`, and `codegenOutputPath` like so: