vote up 0 vote down star

When creating a new Java project in IntelliJ IDEA, the following directories and files are created:

./projectname.iml
./projectname.ipr
./projectname.iws
./src/

I want to configure IntellJ to include my dependency JARs in ./lib/*.jar to the project. What is the correct way to achieve this in IntelliJ IDEA?

Yes - I'm an IntelliJ IDEA beginner :-)

flag

2 Answers

vote up 1 vote down check

File -> Project Structure (ctrl + shift + alt + s ) -> Module -> Dependencies -> add... -> Project Library -> Attach Jar

link|flag
+1 - This is the better answer. Knowing the shortcuts is invaluable, especially when you want to demonstrate where to go without the benefit of images from screen shots. 8) – duffymo Jun 26 at 23:41
Also, consider adding a lib folder, and use "Attach Jar Directories", which will add all jars in the lib folder. For a largish project, this keeps you from having to choose each jar individually. – joeslice Jul 6 at 18:04
vote up 0 vote down

Congratulations - you're using the best IDE on the market, in my opinion. Which version? 8.1?

You add them as libraries to your module.

I usually don't have a /lib in my source. I just cherry pick the JARs that I need from my disk and let IntelliJ just bring them into the /out directory as needed.

link|flag
I'm using 8.1. How to I add them as libraries to my module? I'm totally new to IntelliJ :-) – knorv Jun 26 at 23:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.