diff --git a/.gitignore b/.gitignore index 32e1807..72081f1 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ classes pom.xml .lein-* +test/oauth/twitter_keys.clj diff --git a/README.markdown b/README.markdown index 6a89429..7a4fe11 100644 --- a/README.markdown +++ b/README.markdown @@ -15,8 +15,8 @@ Add `[clj-oauth "1.5.5"]` as a Leiningen dependency to get the latest release. Create a file test/oauth/twitter_keys.clj that contains the consumer key and secret. ``` clojure -(def consumer-key "blah") -(def consumer-secret "itsasecret") +(def key "blah") +(def secret "itsasecret") ``` `lein test` diff --git a/project.clj b/project.clj index ed99f50..6dd8812 100644 --- a/project.clj +++ b/project.clj @@ -4,8 +4,8 @@ :url "https://opensource.org/licenses/BSD-2-Clause" :distribution :repo} :description "OAuth support for Clojure" - :dependencies [[org.clojure/clojure "1.7.0"] - [commons-codec/commons-codec "1.8"] - [org.bouncycastle/bcprov-jdk15on "1.54"] - [org.bouncycastle/bcpkix-jdk15on "1.54"] - [clj-http "2.0.1"]]) + :dependencies [[org.clojure/clojure "1.9.0"] + [clj-http "3.7.0"] + [commons-codec/commons-codec "1.10"] ; pin to same version as clj-http + [org.bouncycastle/bcprov-jdk15on "1.59"] + [org.bouncycastle/bcpkix-jdk15on "1.59"]])