0

Trying to setup a sample Spring application using tutorial:

http://en.tekstenuitleg.net/articles/software/spring-3-mvc-project-from-scratch/creating-a-project-layout

but on Page 4 of this tutrial, Maven is throwing this exception. Any pointers on to how to fix it?

enter image description here

Beryllium
  • 12,808
  • 10
  • 56
  • 86
breakingBad
  • 5
  • 1
  • 2

1 Answers1

1

It is not able to resolve maven-resources-plugin, configure your pom.xml to use external public repository which has this plugin

 <project>
  .
  .
  <repositories>
    <repository>
      <id>central</id>
      <name>Maven Repository Switchboard</name>
      <layout>default</layout>
      <url>http://repo1.maven.org/maven2</url>
    </repository>
  </repositories>
  .
  .
 <project>
jmj
  • 237,923
  • 42
  • 401
  • 438