Reputation: 5142
I am trying to open this module in Intellij: https://github.com/eugenp/tutorials/tree/master/javaxval
The steps followed by me:
mvn clean install.
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
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