I've tried adding .jar files to the Global Libraries
section in settings, but whenever I create a new project, those libraries still have to be manually added to the project.
I've consulted the documentation on Jetbrains's site (https://www.jetbrains.com/idea/help/configuring-project-and-global-libraries.html) and I seem to be doing everything correctly.
With only the Welcome to IntelliJ IDEA
window open, I've performed the following steps:
- Open
Default Project Structure
options with CMD+; - Select
Global Libraries
from the left pane. - Click the
+
in the second pane and selectJava
. - Navigate to and select the
jsoup-1.8.2.jar
file which is the library I am attempting to make global and then selectOK
. Click
OK
to close theDefault Project Structure
options window.Select
Create new Project
- Select Java from the left panel and then select
Next
. - Select
Next
again. - Name the project and select
Finish
.
At this point the only External Libraries
added is <1.6>
.
So I have to proceed by manually adding the library to the project.
How do I set IntelliJ IDEA to load specific libraries automatically when creating new Projects?