How to Add External JAR File to an IntelliJ IDEA Project? Last Updated : 21 Jun, 2025 Comments Improve Suggest changes Like Article Like Report IntelliJ is an integrated development environment(IDE) written in Java. It is used for developing computer software. This IDE is developed by JetBrains and is available as an Apache 2 licensed community edition and a commercial edition. Please refer to this article step by step guide to install Intellij Idea to installing IntelliJ on your local system. A JAR (Java Archive) is a package file format typically used to aggregate many Java class files and associated metadata and resources (text, images, etc.) into one file to distribute application software or libraries on the Java platform. In simple words, a JAR file is a file that contains a compressed version of .class files, audio files, image files, or directories. Now we are going to see the step-by-step process for adding an External JAR File To an IntelliJ IDEA Project.Step by Step Implementation to Add an External JAR File to IntelliJ IDEAStep 1: Open your installed IntelliJ IDEA Project and go to the File > Project Structure as shown in the image below. Step 2: After step 1 Select Modules at the left panel and select the Dependencies tab as shown in the below image. Step 3: Now select the + icon and select 1 JARs or Directories option as shown in the below image. Step 4: Now select your JAR file or you can select the directories. And click on the OK button as shown in the below image. Step 5: Finally after selecting your JAR file click on the OK button as shown in the below image. And you are done. Comment More infoAdvertise with us Next Article How to Add External JAR File to an IntelliJ IDEA Project? A AmiyaRanjanRout Follow Improve Article Tags : Java how-to-install Practice Tags : Java Similar Reads How to Create a Gradle Project in IntelliJ IDEA? Gradle is an excellent open-source construction tool that is capable of the development of any kind of software. It is an automation tool that is based on Apache Ant and Apache Maven. This tool is capable of developing applications with industry standards and supports a variety of languages includin 2 min read How to Create a Maven Project in IntelliJ IDEA? Maven is a powerful project management tool based on POM (project object model). It is used for project build, dependency, and documentation. It simplifies the build process like ANT. In the short term, we can tell Maven is a tool that can build and manage any Java-based project. maven makes the day 4 min read How to Create a Spring Boot Project with IntelliJ IDEA? Spring Boot is one of the most popular frameworks for building Java applications, and IntelliJ IDEA is a top-tier IDE for Java development. In this article, we will guide you through the process of creating a Spring Boot project using IntelliJ IDEA. Whether you are a beginner or an experienced devel 3 min read How to Create a Maven Project in Eclipse IDE? Maven is a powerful project management tool that is based on POM (project object model). It is used for project build, dependency, and documentation. It simplifies the build process like ANT. But it is too much advanced than ANT. In short terms we can tell maven is a tool that can be used for buildi 2 min read How to Add JAR file to Classpath in Java? JAR is an abbreviation of JAVA Archive. It is used for aggregating multiple files into a single one, and it is present in a ZIP format. It can also be used as an archiving tool but the main intention to use this file for development is that the Java applets and their components(.class files) can be 4 min read Like