Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

remove / ignore maven project in intellij

I have many modules in intellij (checked out from SCM) and intellij is slow on many actions (indexing,make etc'...) I got a suggestion to ignore the maven project by right click pom.xml and then clicking that:

how to ignore project in intellij idea.

What is it going to do? what is the difference between ignore and remove?
Since I have many modules I want to do it from command line. Are these settings stored in files?

like image 353
oshai Avatar asked Feb 10 '23 05:02

oshai


1 Answers

Take a look at the IntelliJ docs, particularly the Maven Projects Tool Window.

Ignore Project / Unignore Project - Choose the Ignore Projects command to ignore project in build, or, on the contrary, include in build the previously ignored project. Ignored projects are not imported into IntelliJ IDEA.

Remove Project - Choose this command to delete the selected Maven modules from the Maven structure. So doing you can opt to delete the corresponding Maven module from the IntelliJ IDEA project as well.

like image 123
whitlaaa Avatar answered Feb 11 '23 19:02

whitlaaa