balteo
balteo

Reputation: 24679

Issue with setting up my playframework application with Eclipse

I am new to playframework and after eclipsifying my application and importing it into eclipse, I noticed that all jar dependencies are listed at the root of my app as shown on the following screen capture:

my eclipse environment

Is there any way to make sure dependencies are listed properly (under referenced libraries) as in this second screen capture:

second screen capture

Upvotes: 4

Views: 781

Answers (2)

Hachmaninow
Hachmaninow

Reputation: 582

I guess the problem shown in the first screenshot was to use the "Project Explorer". The second screenshot uses the "Package Explorer" which aggregates all referenced libraries under "Referenced Libraries".

Upvotes: 11

Alex Varju
Alex Varju

Reputation: 2922

You can change the way Eclipse presents these jars by going to the View Menu dropdown in the top-right corner and selecting "Show 'Referenced Libraries' node":

Eclipse screenshot

Upvotes: 3

Related Questions