Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ classes
pom.xml
.lein-*

test/oauth/twitter_keys.clj
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
10 changes: 5 additions & 5 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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"]])