Hello i have a problem to add external librarys like JDom or something else, i know how i do it in eclipse, but in idea i cant find the right section to do this
Hello i have a problem to add external librarys like JDom or something else, i know how i do it in eclipse, but in idea i cant find the right section to do this
sorry 4 my stupid question ;)
Any jar can be added in project structure dialog, module dependencies tab, via Add button.
I think the point is that in IDEA there is no conception of "external" or "internal" jar. The basics are: 1. You can add any jar from your hard drive. 2. If the start of the jar's path matches a path variable, then this variable is used to store the path in .iml. 3. PROJECT_DIR, MODULE_DIR and APPLICATION_HOME_DIR (IDEA installation directory) variables are predefined. 4. You can add your own variables in IDE settings / Path variables. I hope, this helps.
Hello Tim,
Any jar can be added in project structure dialog, module dependencies tab,
via Add button.
I think the point is that in IDEA there is no conception of "external" or
"internal" jar. The basics are:
1. You can add any jar from your hard drive.
2. If the start of the jar's path matches a path variable, then this variable
is used to store the path in .iml.
3. PROJECT_DIR, MODULE_DIR and APPLICATION_HOME_DIR (IDEA installation directory)
variables are predefined.
4. You can add your own variables in IDE settings / Path variables.
I hope, this helps.
Alexander.