Reputation: 115
I set libraries in module dependecies
But in "External Libraries" i see only java and groovy.
What am I doing wrong?
Upvotes: 0
Views: 67
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
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