Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3 from espeed/master
Browse files Browse the repository at this point in the history
Fixes ClassNotFound exception from incompatible transitive dependencies
  • Loading branch information
dwestheide committed Jul 2, 2012
2 parents 2d9a9e2 + 14f2c21 commit 587db24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions project.clj
@@ -1,6 +1,6 @@
(defproject clj-pubnub "0.0.1"
(defproject clj-pubnub "0.0.2"
:description "Clojure client for PubNub"
:dependencies [[clj-http "0.3.2"]
[cheshire "2.2.2"]
:dependencies [[clj-http "0.4.3"]
[cheshire "4.0.0"]
[digest "1.4.0"]]
:dev-dependencies [[swank-clojure "1.4.0"]])
:dev-dependencies [[swank-clojure "1.4.2"]])
2 changes: 1 addition & 1 deletion src/clj_pubnub/client.clj
Expand Up @@ -2,7 +2,7 @@
(:use [digest :only [digest]])
(:require [clj-http.client :as http]
[cheshire.core :as json]
[clojure.contrib.string :as str]))
[clojure.string :as str]))

(defonce ^{:dynamic true} config
{})
Expand Down

0 comments on commit 587db24

Please sign in to comment.