• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Eclipse : Buid Path Configuratin

 
Ranch Hand
Posts: 122
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I have a project, say "mian".
It depends on another project, say "core".

Now in the repository, jar of core is already present.
It's running fine.

Now i need to add some method in core which will be used by main.
So I need import core project in the same workspace as in main.

If i do this, got compile time error.

I also tried this--
right click on main---> build path--> configure build path--> source--> link source
--> browse for core.

In this case i got error--
"can not nest output folder........"

Can you suggest what should i do?

Thanks,
Kaya.
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I assume that "code" and "main' are separate projects in Eclipse. Are they located in separate directories on the hard drive? Is the "main" project configured to depend on the "core" project?

If you remove the core.jar file from the "main" project do the problems go away?

What compile error are you getting? Is the error in the "main" or "core" project?
 
reply
    Bookmark Topic Watch Topic
  • New Topic