Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-16 Thread Andrew Pennebaker
/ -Original Message- From: Andrew Pennebaker [mailto:apenneba...@42six.com] Sent: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-15 Thread Curtis Rueden
...@42six.com] Sent: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain Maven and an arbitrary text editor

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-15 Thread Andrew Pennebaker
Pennebaker [mailto:apenneba...@42six.com] Sent: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-15 Thread Curtis Rueden
, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain Maven and an arbitrary text editor instead

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-14 Thread Andrew Pennebaker
: Andrew Pennebaker [mailto:apenneba...@42six.com] Sent: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain Maven

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-11 Thread Andrew Pennebaker
: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain Maven and an arbitrary text editor instead. On Thu, Oct 10, 2013 at 11:21 AM, Russell Gold r

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-11 Thread Russell Gold
using eclipse http://nambisankaran.wordpress.com/2012/06/30/running-jetty-server-with-maven/ -Original Message- From: Andrew Pennebaker [mailto:apenneba...@42six.com] Sent: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-11 Thread Stephen Connolly
://nambisankaran.wordpress.com/2012/06/30/running-jetty-server-with-maven/ -Original Message- From: Andrew Pennebaker [mailto:apenneba...@42six.com] Sent: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also

RE: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-11 Thread Sankaran, Nambi
(plugin) that can enable this for emacs or vim, would be a great. -Original Message- From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] Sent: Friday, October 11, 2013 9:58 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? Why would you want

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-11 Thread Curtis Rueden
: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain Maven and an arbitrary text editor instead. On Thu, Oct 10, 2013 at 11:21 AM, Russell Gold r...@gold-family.us wrote: The simplest way to do this is actually

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-11 Thread Curtis Rueden
: Is there a Maven plugin for the Java debugger (jdb)? Why would you want to walk from New York to San Francisco when you can fly? Some people are gluttons for punishment, some people like text-mode (works better over plain ssh without resorting to eg X11 forwarding) Finally debugging when

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-11 Thread Andrew Pennebaker
[mailto:apenneba...@42six.com] Sent: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain Maven and an arbitrary text editor instead

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-11 Thread Curtis Rueden
- From: Andrew Pennebaker [mailto:apenneba...@42six.com] Sent: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-11 Thread Mark Derricutt
You could run it via the maven-exec-plugin, which allows you to pass down the classpath. On 11 Oct 2013, at 3:52, Andrew Pennebaker wrote: Yes. I'm looking for a task like `mvn jdb:debug Class` that starts a jdb session on Class.main(). I can run jdb on individual Java code outside of a

Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Andrew Pennebaker
I'd like to run jdb over some of my classes in a Maven project. Is there a plugin I can drop into my pom.xml?

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Benson Margulies
What would that mean? Do you want to execute the program in the debugger? On Thu, Oct 10, 2013 at 10:38 AM, Andrew Pennebaker apenneba...@42six.com wrote: I'd like to run jdb over some of my classes in a Maven project. Is there a plugin I can drop into my pom.xml?

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Andrew Pennebaker
Yes. I'm looking for a task like `mvn jdb:debug Class` that starts a jdb session on Class.main(). I can run jdb on individual Java code outside of a Maven structure, but I'm not sure how to inform jdb of Java code in a Maven project, Maven's CLASSPATH handling, etc. etc. On Thu, Oct 10, 2013 at

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Russell Gold
The simplest way to do this is actually to run it in your IDE directly. IntellijIDEA community edition can import your maven project and thus get all of the dependencies. Then you just run the program in the debugger. I presume Eclipse can do something similar. On Oct 10, 2013, at 10:52 AM,

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Curtis Rueden
Hi Andrew, Another option is to use the exec-maven-plugin to launch your java program of choice, then attach to it with jdb afterward using the -attach option. See also: http://stackoverflow.com/questions/2935375/debugging-in-maven Regards, Curtis On Thu, Oct 10, 2013 at 10:21 AM, Russell

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Andrew Pennebaker
I could also use an IDE for package management, but I'd rather use plain Maven and an arbitrary text editor instead. On Thu, Oct 10, 2013 at 11:21 AM, Russell Gold r...@gold-family.us wrote: The simplest way to do this is actually to run it in your IDE directly. IntellijIDEA community edition

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Andrew Pennebaker
Thanks! I'll look into it! On Thu, Oct 10, 2013 at 12:02 PM, Curtis Rueden ctrue...@wisc.edu wrote: Hi Andrew, Another option is to use the exec-maven-plugin to launch your java program of choice, then attach to it with jdb afterward using the -attach option. See also:

RE: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Sankaran, Nambi
, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain Maven and an arbitrary text editor instead. On Thu, Oct 10, 2013 at 11:21 AM, Russell Gold r...@gold-family.us wrote

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Andrew Pennebaker
-with-maven/ -Original Message- From: Andrew Pennebaker [mailto:apenneba...@42six.com] Sent: Thursday, October 10, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain

RE: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Sankaran, Nambi
: Thursday, October 10, 2013 11:26 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? Yes, various Java IDEs can debug Java code, including Java code organized in Maven projects. What I'm interested in is debugging Java code in a Maven project with an arbitrary

Re: Is there a Maven plugin for the Java debugger (jdb)?

2013-10-10 Thread Russell Gold
, 2013 11:04 AM To: Maven Users List Subject: Re: Is there a Maven plugin for the Java debugger (jdb)? I could also use an IDE for package management, but I'd rather use plain Maven and an arbitrary text editor instead. On Thu, Oct 10, 2013 at 11:21 AM, Russell Gold r...@gold-family.us wrote