Christopher Klewes
Christopher Klewes

Reputation: 11435

How to disable auto "Update Maven Dependencies" after saving a pom.xml?

How to disable auto "Update Maven Dependencies" after saving a pom.xml in Eclipse IDE with m2eclipse Plugin?

16.04.10 11:09:40 MESZ: Refreshing [/project/pom.xml]
16.04.10 11:09:40 MESZ: Maven Builder: AUTO_BUILD 

Upvotes: 6

Views: 29772

Answers (4)

Gordon Dickens
Gordon Dickens

Reputation: 1457

If you disable "process-resources" in a Spring application, you will not get any resource files such as log4j.xml or Spring configuration files copied to the

Upvotes: 1

mateusz.fiolka
mateusz.fiolka

Reputation: 3100

Window -> Preferences -> Maven -> enable Offline option

Upvotes: 17

Pascal Thivent
Pascal Thivent

Reputation: 570295

You can't. But why would you even want to do that? Keeping your project build path in sync with the pom is a good thing.

Upvotes: 3

Michał Mech
Michał Mech

Reputation: 2055

You can edit "Goals to run when updating project configuration" in Window > Preferences > Maven. Default setting is "process-resources", try to remove it.

Upvotes: 1

Related Questions