hatellla
hatellla

Reputation: 5142

Unable to import the Maven module in Intellij

I am trying to open this module in Intellij: https://github.com/eugenp/tutorials/tree/master/javaxval

The steps followed by me:

  1. Go to required directory javaxval/ in my local and

mvn clean install.

  1. Open the pom.xml inside javaxval/ and open it as a project.

But Intellij is not syncing with the libraries mentioned in pom.xml as I can see in libraries section in Project Structure settings. Also, because of that, I can see lot of compilation errors.

Any idea what is the issue I am facing and how can I fix it?

Upvotes: 2

Views: 1793

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 402443

This project imports and builds fine in IntelliJ IDEA 2019.2.2 version using the bundled Maven 3.6.1 for importing and JDK 1.8.

If it doesn't import/build for you, perform the diagnostics and check the logs as described in this answer. Make sure the parent pom file is present in the directory tree on your disk.

Upvotes: 1

Related Questions