views:

1759

answers:

6

the list of jars just takes too much place. Can I collapse it or hide it?

+7  A: 

Hi, you can :

  • Uncheck the 'Show Referenced Libraries Node'
  • Add a filter to hide "*.jar" files
WiseTechi
A: 

Or you can use dependency management tool like Maven2 or IVY and abstract dependencies out of project.

Boris Pavlović
This doesn't fix that problem. To use the project in Eclipse, the .classpath still has to exist, you would just initialize it with Maven.
Robin
+1  A: 

I believe that Eclipse 3.4.2 places jars under "Referenced Libraries" node which is collpasable. What version do you use?

grigory
3.4.1 .
flybywire
time to upgrade :-)
grigory
+1  A: 

In Eclipse3.5, select the filter "libraries from external" in "customize view".

WL
A: 

Go the library Tab of Java Build Path, Add Variable (add a variable name and library folder location).

Once the variable is added, click on extend, you will see all the jars. Select all of them (or whatever is needed) and click ok. Exit the build path dialog box by clicking ok.

This will remove all the jars from your project view.

Arnab
+1  A: 

In Eclipse3.5

  • Go to Configure Build Path. Select the Library Tab
  • Remove any library jar files you want to hide
  • Use Add External Jar option to add the Jar file back
  • select the filter "libraries from external" in "customize view".
rayshi02