Skip to content
Snippets Groups Projects
Unverified Commit 16f50360 authored by Cam Saul's avatar Cam Saul
Browse files

Use HTTPS for Redshift driver

parent 4d514bca
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,7 @@
[clj-time "0.13.0"] ; library for dealing with date/time
[clojurewerkz/quartzite "2.0.0"] ; scheduling library
[colorize "0.1.1" :exclusions [org.clojure/clojure]] ; string output with ANSI color codes (for logging)
[com.amazon.redshift/redshift-jdbc41 "1.2.8.1005"] ; Redshift JDBC driver
[com.cemerick/friend "0.2.3" ; auth library
:exclusions [commons-codec
org.apache.httpcomponents/httpclient
......@@ -93,10 +94,9 @@
[ring/ring-json "0.4.0"] ; Ring middleware for reading/writing JSON automatically
[stencil "0.5.0"] ; Mustache templates for Clojure
[toucan "1.0.3" ; Model layer, hydration, and DB utilities
:exclusions [honeysql]]
[com.amazon.redshift/redshift-jdbc41 "1.2.8.1005"]] ; Redshift JDBC driver
:repositories [["bintray" "https://dl.bintray.com/crate/crate"]
["redshift" "http://redshift-maven-repository.s3-website-us-east-1.amazonaws.com/release"]] ; Repo for Crate JDBC driver
:exclusions [honeysql]]]
:repositories [["bintray" "https://dl.bintray.com/crate/crate"] ; Repo for Crate JDBC driver
["redshift" "https://s3.amazonaws.com/redshift-driver-downloads"]]
:plugins [[lein-environ "1.1.0"] ; easy access to environment variables
[lein-ring "0.11.0" ; start the HTTP server with 'lein ring server'
:exclusions [org.clojure/clojure]] ; TODO - should this be a dev dependency ?
......
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