63
votes

I have a project in IntellijIDEA which was created with Maven. I then specified a set of dependencies and external repositories in the Pom.xml file.

The project builds fine on command line if I do "mvn install". When I open any of the code files in the IDE though it says all the classes handled by Maven dependencies aren't recognized - as it would for a normal project if I never added the required JARs to the build path.

I know in my Eclipse Maven projects (rather than IntelliJ) it usually shows an extra directory on the left which says "Maven Dependencies" and lists the JARs pulled in via maven. I don't see that here. What am I doing wrong?


Here's what my screen looks like:

IDE Image

25
Did you enable maven on your project configuration in intellij? Just unfold the maven panel, probably on the right side of your screen.Thibault D.
Have you enabled Maven plugin in your IDEA?Amir Pashazadeh
Also, check if the maven home directory is properly set under Settings/Maven.zagyi
Try to Reimport the project from IDEA Maven Projects tool window.CrazyCoder

25 Answers

32
votes

After installing IntelliJ IDEA on a new computer I found myself with the same issue.

I had to update the remote maven repository. (Settings > Maven > Repositories)

enter image description here

Both local and remote repos needed to be updated. The remote one wasn't updated ever before this. After a restart everything worked fine. You might have to reimport your project.

31
votes

For some reason re-import did not do the trick. After looking at this:

http://www.jetbrains.com/idea/webhelp/maven-importing.html

I set auto-import and then the problem went away though; hopefully it helps someone else. Thanks for the ideas everyone :).

21
votes

You could go to:

File > Settings > Build, Execution, Deployment > Build Tools > Maven

and check if your pom.xml is not in the "Ignored Files" list.

20
votes

I was running into similar issues. For me it ended up being that I was importing the project incorrectly. I had been doing

import project
    <navigate to existing project and click top level directory>
    follow the wizard

What solved my maven problems was to do

import project
    <navigate to existing project and click the pom.xml
    follow the wizard
13
votes

For me File>>Invalidate Cache/Restart>>Invalidate and Restart worked in IntelliJ

7
votes

Right click on the pom.xml -> Add as Maven project -> Reimport

Maven import

4
votes

A simple reimport and/or update of the repositories via Intellij did not do the trick for me.

Instead I had to delete the complete ~/.m2/repository directory and let maven sort everything out by itself. Afterwards Maven -> Reimport finished it off.

4
votes

Idea cannot download all dependent jar packages using maven,try the following operations:

mvn -U idea:idea

then all the dependent jar packages are download from the maven repository

3
votes

I've encountered a similar issue after refactoring my maven project into different modules. Re-importing on it's own usually doesn't work, but I've found that deleting the .iml files and then re-importing usually does the trick.

2
votes

Ran into the "same" issue some days ago. It might not be related as my issue was more specific to Spring boot but as I was struggling with it and tried every solution on this post I'm going to share my experience.

What I was trying to do is to add one of my spring boot app into another project as a maven dependency. The dependency was resolved but I couldn't access my classes.

When no packaging is declared, Maven assumes the default packaging is JAR. The JAR generated by the Spring Boot Maven Plugin overrides the default one generated by Maven.

The solution was:

The solution that we found is to generate another JAR which will be used as a dependency to be imported from other projects.

The full article which helped me solve my issue.

Hope it helps someone.

1
votes

In my case the problem was that the project was in maven2 while intellj was configured for maven3. Switching to maven2 in settings solved the problem

1
votes

Might be useful to others that were still stuck like me. None of the suggested fix worked. Actually, not before I fixed my main problem which was the installation location of maven.

In my case, I did not use the standard location. Changing that location in the maven settings (Settings/Maven/Maven home repository) did the trick.

My 2 cents.

1
votes

For reasons I don't understand, in my case, I needed turn on setting "Always update snapshots" in Build, Executions, Deployment > Build Tools > Maven.

That made IntelliJ redownload dependencies and make it work.

1
votes

Cache is causing problems! Make sure to do the following:

In your terminal, go to project/module:

mvn clean install

In your IntelliJ:

  1. File > Invalidate Caches > Invalidate

  2. Right click on project/module > Maven > Reimport

1
votes

For my case I should have checked the work offline

Go to File>Settings >Build, Execution, Deployment >Build tools>Maven Then check Work Offline

0
votes

This also happened to me after upgrading Intellij to 1.4.15. I tried to re-import the whole project with same result, but enabling Maven Auto Import did the tricks.

0
votes

Looks like there are several, valid reasons why intelliJ would ignore a pom file. None of the previous answers worked in my case, so here's what did work, in case someone else runs into this issue:

In this example, module3 was being completely ignored by IntelliJ. The pom.xml in that directory wasn't even being treated as a maven pom.

My project structure is like this:

myProject
    module1
    module2
    module3

BUT, my (simplified) pom structure is like this:

<project>
    <modelVersion>4.0.0</modelVersion>
    <groupId>devs</groupId>
    <artifactId>myProject</artifactId>
    <version>0.0-SNAPSHOT</version>
    <packaging>pom</packaging>
    <name>myProject</name>

    <modules>
        <module>module1</module>
        <module>module2</module>
    <modules>

    <profiles>
        <profile>
            <id>CompleteBuildProfile</id>
            <modules>
                <module>module3</module>
            </modules>
        </profile>
    </profiles>
</project>

To fix this, I modified the root <modules> element to add in module3 temporarily.

    <modules>
        <module>module1</module>
        <module>module2</module>
        <module>module3</module>
    <modules>

Next re-import the root pom, and IntelliJ will add the module. When that's done, revert the pom. IntelliJ will ask if you also want to remove module3 from the project structure. Click No.

Bam! Done. Module3 works and I can run my Integration tests from IntelliJ again :D

0
votes

The problem was caused for me by selecting the project directory to be Imported when first starting IntelliJ rather than the pom.xml file for the project.

Closing the problem project and then following the Import process again but choosing the pom.xml resulted in a fully working project in the IDE.

0
votes

For me the problem seems to be a conflict with the maven helper plugin (https://plugins.jetbrains.com/plugin/7179?pr=idea).

I disable it, and it works again :)

0
votes

Go to File > Settings > Build, Execution, Deployment > Build Tools > Maven and check the Maven home directory. This should be the same maven installation used for command line

0
votes

For me, what did the trick was to add the dependencies in File > Project Settings > Modules > Dependencies.

0
votes

Just delete your project's .idea folder and re-import your project in IntelliJ.

0
votes

If you have any dependencies in pom.xml specific to your organisation than you need to update path of setting.xml for your project which is by default set to your user directory in Ubuntu : /home/user/.m2/settings.xml -> (change it to your apache-maven conf path)

Go to -> intellij settings -> build,Execution, Deployement -> Build Tools -> Maven -> User settings file

Update Setting.xml file Intellij

0
votes

Restart, Invalid caches, outside building, none worked for me.

Only Reimport worked finally. For others sake, putting it as answer:

Right click the project > Maven > Reimport
0
votes

While importing a New project :

1.To identify all the modules in a project as maven modules: File --->New Project Settings -->Build Execution deployment -->build tools --> maven ---> importing ---> enable "search for projects recursively"