jani
jani

Reputation: 41

Failed to load late-bound plugin: org.apache.maven.plugins:maven-resources-plugin

We have our local Maven repository which was working fine till yesterday.

Today we are getting the following error while building any project.

Failed to load late-bound plugin: org.apache.maven.plugins:maven-resources-plugin

We haven't change any settings. Any idea?

Upvotes: 0

Views: 765

Answers (2)

Pascal Thivent
Pascal Thivent

Reputation: 570615

It's hard to say because you skipped the next line that prints the Reason. A typical output looks like:

[WARN] Failed to load plugin: org.apache.maven.plugins:maven-resources-plugin. Adding to late-bound plugins list.
Reason: Failed to load plugin. Reason: The plugin 'org.apache.maven.plugins:maven-resources-plugin' does not exist or no valid version could be found 

It would have been interesting to join this line to find a fix for the root cause of the problem.

Upvotes: 1

jani
jani

Reputation: 41

I resolved it.

I had to delete the plugins folder on my local repository then Maven downloaded the plugins again.

It works fine now.

Upvotes: 0

Related Questions