Disabling Maven project designer when importing projects into eclipse

Every time I import a new project into eclipse I do the following:

  • Uncheck "Allow Workspace Projects"
  • deactivate maven buider (Project Properties - > Build menu )

My goal is to avoid a complete build every time I save the POM or change the java file and any other builds on dependent projects. I also want to keep my automatic Java constructor.

Likewise, there is a global option to work offline (in Window -> preferences -> Maven ), is there a way to automatically remove these settings every time the project is imported?

+3


source to share


2 answers


You can at least uncheck the " Resolve Workspace projects

" option in the " " dialog box Import Maven Projects

. I don't know of any way to avoid creating the project after import without changing the global settings (like Project -> Build Automatically

@gOVIL suggested).



0


source


Try to uncheck the box



Project -> Build Automatically.

-2


source







All Articles