Hi,

On May 7, 10:01 pm, Benjamin Teuber <bsteu...@googlemail.com> wrote:
> Hi,
>
> I think many people (including me) have the problem that ELPA-swank
> uses clojure's old ^-syntax and therefore breaks with clojure-1.2.0-
> master-SNAPSHOT
>
> Does anyone have a plan what I can do assuming I want to keep both the
> new clojure version and swank?
> I'm using Maven, if that matters.

Here's how I'm doing using leiningen:

Step 1:
ni...@nipra-laptop:~/Projects/clojure-projects$ lein-1.1.0 new test-
project

Step 2:
Edit project.clj

(defproject test-project "1.0.0-SNAPSHOT"
  :description "FIXME: write"
  :dependencies [[org.clojure/clojure "1.2.0-master-SNAPSHOT"]
                 [org.clojure/clojure-contrib "1.2.0-master-
SNAPSHOT"]]
  :dev-dependencies [[leiningen/lein-swank "1.2.0-SNAPSHOT"]])

Step 3:
ni...@nipra-laptop:~/Projects/clojure-projects/test-project$
lein-1.1.0 deps

Step 4:
ni...@nipra-laptop:~/Projects/clojure-projects/test-project$
lein-1.1.0 swank

Step 5:
M-x slime-connect

Regards,
nipra

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to