Khouadja
Khouadja

Reputation: 39

Maven Configuration

Failure to transfer org.codehaus.plexus:plexus-io:jar:2.0.1 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.codehaus.plexus:plexus-io:jar:2.0.1 from/to central (http://repo.maven.apache.org/maven2): No response received after 60000

Upvotes: 0

Views: 1282

Answers (2)

Vivek Misra
Vivek Misra

Reputation: 175

I think you are trying to upload/download artifact to repo. You need to contact your SCM/maven repo administrator. Server may be down and that is why you are not able to upload/download your artifact.

Upvotes: 0

Anant Laxmikant Bobde
Anant Laxmikant Bobde

Reputation: 564

Here are steps which you can follow.

  1. Make sure internet is ON.
  2. Delete {user.home}/.m2 directory.
  3. Run mvn clean install

Above will build your artifact from scratch. Following command will help you converting the artifact in eclipse runnable project

  1. mvn eclipse:eclipse

Cheers Anant

Upvotes: 1

Related Questions