Skip to content
Snippets Groups Projects
Commit 23a8b304 authored by Cam Saül's avatar Cam Saül
Browse files

Merge pull request #411 from metabase/version_bump_2000

Bump dep versions :joy: :yum: :smirk_cat:
parents 74813fe5 2f486510
No related branches found
No related tags found
No related merge requests found
......@@ -30,10 +30,10 @@
[com.h2database/h2 "1.4.187"] ; embedded SQL database
[com.mattbertolini/liquibase-slf4j "1.2.1"]
[com.novemberain/monger "2.1.0"] ; MongoDB Driver
[compojure "1.3.3"] ; HTTP Routing library built on Ring
[compojure "1.3.4"] ; HTTP Routing library built on Ring
[environ "1.0.0"] ; easy environment management
[hiccup "1.0.5"] ; HTML templating
[korma "0.4.0"] ; SQL lib
[korma "0.4.1"] ; SQL lib
[log4j/log4j "1.2.17"
:exclusions [javax.mail/mail
javax.jms/jms
......
......@@ -37,9 +37,6 @@
;; ## no SSL -- this should *not* include the key :ssl (regardless of its value) since that will cause the PG driver to use SSL anyway
(expect
{:user "camsaul"
:host "localhost"
:port "5432"
:db "bird_sightings"
:classname "org.postgresql.Driver"
:subprotocol "postgresql"
:subname "//localhost:5432/bird_sightings"
......@@ -54,17 +51,14 @@
(expect
{:ssl true
:make-pool? true
:db "bird_sightings"
:sslmode "require"
:classname "org.postgresql.Driver"
:port "5432"
:subprotocol "postgresql"
:host "localhost"
:user "camsaul"
:sslfactory "org.postgresql.ssl.NonValidatingFactory"
:subname "//localhost:5432/bird_sightings"}
(connection-details->connection-spec {:ssl true
:host "localhost"
:port "5432"
:port 5432
:dbname "bird_sightings"
:user "camsaul"}))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment