Re: Trying to use CDT on 1.3.0

2011-12-10 Thread Ulises
Alternatively you can just do:

$ lein plugin install swank-clojure 1.3.3

and have swank across projects without having to add your
:dev-dependencies for each one.

U

-- 
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


Re: Trying to use CDT on 1.3.0

2011-12-09 Thread Richard Tiger Melville
New to lein, coming from SBCL where slime setup is effortless!  Any ideas 
why
this fundamental step is failing?

bash-4.1$ lein version
Leiningen 1.6.1 on Java 1.6.0_25 Java HotSpot(TM) Client VM
bash-4.1$ lein swank
That's not a task. Use lein help to list all tasks.
bash-4.1$ 

-- 
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

Re: Trying to use CDT on 1.3.0

2011-12-09 Thread Linus Ericsson
Swank is not built in by default. Have you added a :dev-dependencies
[[swank-clojure 1.4.0-SNAPSHOT]] map entry to project.clj and runned lein
deps and the lein swank?

(1.4.0-SNAPSHOT worked for me a few days ago, maybe 1.4.0 is out sooner or
later)

/Linus

2011/12/9 Richard Tiger Melville melvilleti...@gmail.com

 New to lein, coming from SBCL where slime setup is effortless!  Any ideas
 why
 this fundamental step is failing?

 bash-4.1$ lein version
 Leiningen 1.6.1 on Java 1.6.0_25 Java HotSpot(TM) Client VM
 bash-4.1$ lein swank
 That's not a task. Use lein help to list all tasks.
 bash-4.1$

  --
 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


-- 
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

Re: Trying to use CDT on 1.3.0

2011-09-26 Thread Brent Millare
Hi George,

I maintain my own dependency management software. Could you elaborate
on what the classpath would look like, for both the client and the
debugger? In the future I may want to extend CDT to a non-slime
solution.

-Brent

On Sep 25, 2:09 pm, George Jahad cloj...@blackbirdsystems.net wrote:
 This is the most up-to-date 
 documentation:http://georgejahad.com/clojure/swank-cdt.html

 Is that what you are using?

 g
 On Sep 22, 1:25 pm, Brent Millare brent.mill...@gmail.com wrote:







  Hmm, I think it was a version mismatch for target repl and debug repl.
  So it works now.

  New issue though, I'm running through the breakpoint example and I'm
  getting an error. The source file doesn't load upon reaching a
  breakpoint. I have set cdt-dir and cdt-source-path

    (setq cdt-dir /home/user/cdt)
    (setq cdt-source-path /home/user/clojure-1.3.0-RC0/src/clj:/home/
  user/clojure-1.3.0-RC0/src/jvm:)

  bp set on (#LocationImpl clojure.set$difference:61 #LocationImpl
  clojure.set$difference:53 #LocationImpl clojure.set$difference:48)
  error in process filter: get-jar-entry: Search failed:   clojure/
  set.clj$
  error in process filter: Search failed:   clojure/set.clj$

  On Sep 22, 1:10 pm, Brent Millare brent.mill...@gmail.com wrote:

   Hi I'm trying to use the clojure debugging toolkit but I'm getting an
   exception when I reach a breakpoint.

   exception in event handler java.lang.RuntimeException:
   java.util.zip.ZipException: error in opening zip file. You may need to
   restart CDT

   Anyone know what's going on?

   Best,
   Brent

-- 
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


Re: Trying to use CDT on 1.3.0

2011-09-25 Thread George Jahad
This is the most up-to-date documentation:
http://georgejahad.com/clojure/swank-cdt.html

Is that what you are using?

g
On Sep 22, 1:25 pm, Brent Millare brent.mill...@gmail.com wrote:
 Hmm, I think it was a version mismatch for target repl and debug repl.
 So it works now.

 New issue though, I'm running through the breakpoint example and I'm
 getting an error. The source file doesn't load upon reaching a
 breakpoint. I have set cdt-dir and cdt-source-path

   (setq cdt-dir /home/user/cdt)
   (setq cdt-source-path /home/user/clojure-1.3.0-RC0/src/clj:/home/
 user/clojure-1.3.0-RC0/src/jvm:)

 bp set on (#LocationImpl clojure.set$difference:61 #LocationImpl
 clojure.set$difference:53 #LocationImpl clojure.set$difference:48)
 error in process filter: get-jar-entry: Search failed:   clojure/
 set.clj$
 error in process filter: Search failed:   clojure/set.clj$

 On Sep 22, 1:10 pm, Brent Millare brent.mill...@gmail.com wrote:







  Hi I'm trying to use the clojure debugging toolkit but I'm getting an
  exception when I reach a breakpoint.

  exception in event handler java.lang.RuntimeException:
  java.util.zip.ZipException: error in opening zip file. You may need to
  restart CDT

  Anyone know what's going on?

  Best,
  Brent

-- 
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


Trying to use CDT on 1.3.0

2011-09-22 Thread Brent Millare
Hi I'm trying to use the clojure debugging toolkit but I'm getting an
exception when I reach a breakpoint.

exception in event handler java.lang.RuntimeException:
java.util.zip.ZipException: error in opening zip file. You may need to
restart CDT

Anyone know what's going on?

Best,
Brent

-- 
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


Re: Trying to use CDT on 1.3.0

2011-09-22 Thread Brent Millare
Hmm, I think it was a version mismatch for target repl and debug repl.
So it works now.

New issue though, I'm running through the breakpoint example and I'm
getting an error. The source file doesn't load upon reaching a
breakpoint. I have set cdt-dir and cdt-source-path

  (setq cdt-dir /home/user/cdt)
  (setq cdt-source-path /home/user/clojure-1.3.0-RC0/src/clj:/home/
user/clojure-1.3.0-RC0/src/jvm:)

bp set on (#LocationImpl clojure.set$difference:61 #LocationImpl
clojure.set$difference:53 #LocationImpl clojure.set$difference:48)
error in process filter: get-jar-entry: Search failed:   clojure/
set.clj$
error in process filter: Search failed:   clojure/set.clj$


On Sep 22, 1:10 pm, Brent Millare brent.mill...@gmail.com wrote:
 Hi I'm trying to use the clojure debugging toolkit but I'm getting an
 exception when I reach a breakpoint.

 exception in event handler java.lang.RuntimeException:
 java.util.zip.ZipException: error in opening zip file. You may need to
 restart CDT

 Anyone know what's going on?

 Best,
 Brent

-- 
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