Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting the classpath in java using Eclipse IDE

I have an Eclipse project with an external folder containing a lot of JAR files (legacy libraries) . instead of adding all the jars in Eclipse ("add external Jar"), I would prefer to add a ref to this external folder. In the "configure build bath", I'm adding a "External Class Folder". If I'm doing that instead of adding the Jar, my program is not compiling anymore. Am I missing something on the way I should use this option ?

Thanks

like image 668
BlackLabrador Avatar asked Feb 28 '11 15:02

BlackLabrador


2 Answers

Try this:

Project -> Properties -> Java Build Path -> Add Class Folder.

If it doesnt work, please be specific in what way your compilation fails, specifically post the error messages Eclipse returns, and i will know what to do about it.

like image 135
Bernd Elkemann Avatar answered Sep 23 '22 21:09

Bernd Elkemann


You can create new User library,

On

"Configure Build Paths" page -> Add Library -> User Library (on list) -> User Libraries Button (rigth side of page)

and create your library and (add Jars buttons) include your specific Jars.

I hope this can help you.

like image 28
Furkan Avatar answered Sep 25 '22 21:09

Furkan