2

I'm just getting started with SpringSource, so I decided to make a Spring MVC project off the template.

However, as soon as I create the template, I get the following error in pom.xml

Execution default-resources of goal org.apache.maven.plugins:maven-resources-plugin:2.5:resources failed: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to collect dependencies for org.apache.maven.plugins:maven-resources-plugin:jar:2.5 () (org.apache.maven.plugins:maven-resources-plugin:2.5:resources:default-resources:process-resources)

Failure to transfer org.codehaus.plexus:plexus-container-default:pom:1.0-alpha-9-stable-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-container-default:pom:1.0-alpha-9-stable-1 from/to central (http://repo.maven.apache.org/maven2): connection timed out to http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom

I've tried reinstalling SpringSource multiple times, and I still get the same error. I'm using SpringSource 3.1.0 32-bit version on a 64-bit Windows 7 machine.

Kevin Bowersox
  • 93,289
  • 19
  • 159
  • 189
Titandrake
  • 616
  • 4
  • 17

2 Answers2

1

I think you need to update your Maven indexes so that it can download the appropriate library required for the template.

  • Go to Window > Preferences > Maven

  • Check Download Repository index updates on startup

  • Restart STS.

  • Attempt to pull down the template again.

Note: It may take some time to download all of the indexes.

enter image description here

Kevin Bowersox
  • 93,289
  • 19
  • 159
  • 189
0

For me deleting the contents in my .m2/repository folder and recreating the project (file-> new->) worked

irl_irl
  • 3,785
  • 9
  • 49
  • 60