Reputation: 105
I have a GWT+Spring+Hibernate project and so I have several jars in WEB-INF/lib directory. All of these jars are added to build path. I get unconvenient view for jars in build path like
MY_Project
|->src
|->resource
|->JRE System Library[jdk1.6]
|->ant.jar //from here on jars in build path
|->asm-common.jar
|->asm-util.jar
|->c3p0.jar
|->commons-collections.jar
.
.
.
and this list goes on for 40 more jars here to cover up full screen length. Consequently I can't navigate to other dependent project easily.
I would like here something like what I get when I switch to spring perspective:
--------------------------------------------------------------------------------
MY_Project
|->src
|->resource
|->JRE System Library[jdk1.6]
|->Referenced Libraries //<-- here goes all that 40 jars under on hood
|->war
---------------------------------------------------------------------------------
So any suggestions.
Thanks in advance
Upvotes: 0
Views: 1283
Reputation: 93
Try this:
Upvotes: 0
Reputation: 46963
Window
-> Preferences
.Java
-> Build Path
-> User Libraries
.From then on the library can be added for any specific project via: right click on your project
-> Build Path
-> Configure
. Select Libraries
tab -> Add Library
-> User Library
.
Enjoy!
Upvotes: 1