RostD
RostD

Reputation: 115

Why i didn't see in "External Libraries" my dependecies?

I set libraries in module dependecies enter image description here

But in "External Libraries" i see only java and groovy. enter image description here

What am I doing wrong?

Upvotes: 0

Views: 67

Answers (2)

RostD
RostD

Reputation: 115

The problem was that the jar-files were inside the current project folder. As soon as I brought them to the external separate folder - they appeared in the "External Libraries" list. Thanks all

Upvotes: 1

MS90
MS90

Reputation: 1249

Well it must be because you didn't export them. Take a look at the image and click Export all you need for exporting.

Export. This option lets you control the compilation classpath for the modules that depend on this one.

Select the checkbox if you want the item to be exported as a dependency along with the module. That is, if there is a module that depends on this one, the items with the Export option on will be included in the compilation classpath of the dependent module.

I strongly advise using

maven-dependency-plugin

however.

Upvotes: 1

Related Questions