[jruby-dev] Re: Unresolved error in eclipse for JRuby source

2011-01-16 Thread Shih-gian Lee
I found my own problem. I forgot to include ant.jar in my classpath. On Sun, Jan 16, 2011 at 12:14 PM, Shih-gian Lee wrote: > Hello, > > I pulled down the JRuby source from github and imported it into eclipse. > However, I am getting "The hierarchy of the type Rake is inconsistent" in my > eclip

Re: [jruby-dev] Re: Unresolved error in eclipse for JRuby source

2011-01-16 Thread Hiroshi Nakamura
Hi, On Mon, Jan 17, 2011 at 10:48, Shih-gian Lee wrote: > I found my own problem. I forgot to include ant.jar in my classpath. That's what I'm doing every time before/after changing local branches (remove/add ant.jar of my own). Does somebody know a good way to avoid this? How NetBeans users are

Re: [jruby-dev] Re: Unresolved error in eclipse for JRuby source

2011-01-17 Thread Wayne Meissner
On 17 January 2011 17:38, Hiroshi Nakamura wrote: > Hi, > > On Mon, Jan 17, 2011 at 10:48, Shih-gian Lee wrote: >> I found my own problem. I forgot to include ant.jar in my classpath. > > That's what I'm doing every time before/after changing local branches > (remove/add ant.jar of my own). Does

Re: [jruby-dev] Re: Unresolved error in eclipse for JRuby source

2011-01-17 Thread Douglas Campos
Create a new user library named "ANT", and it will magically work. screenshot here => https://skitch.com/qmx.me/rjanu/preferences Netbeans puts ant on classpath by default, as this is used on the build cycle On Jan 17, 2011, at 6:04 AM, Wayne Meissner wrote: > On 17 January 2011 17:38, Hiroshi N

Re: [jruby-dev] Re: Unresolved error in eclipse for JRuby source

2011-01-17 Thread Hiroshi Nakamura
Hi, Wayne, Douglas, Thanks! Resolved the problem. I need more understanding of Eclipse. On Mon, Jan 17, 2011 at 20:07, Douglas Campos wrote: > Create a new user library named "ANT", and it will magically work. > screenshot here => https://skitch.com/qmx.me/rjanu/preferences According to the .cl

Re: [jruby-dev] Re: Unresolved error in eclipse for JRuby source

2011-01-19 Thread Shih-gian Lee
> Create a new user library named "ANT", and it will magically work. > screenshot here => https://skitch.com/qmx.me/rjanu/preferences > > Netbeans puts ant on classpath by default, as this is used on the build > cycle That worked for me, too! Thanks everyone!