In the pom file including the following did not work for me
<repositories>
<repository>
<id>mvn-nemp-ftp</id>
<name>Nemp's Maven Repository</name>
<url>http://mvn.neemre.com/</url>
</repository>
</respositories>
I had to change repositories to distributionManagement for it to work for me in eclipse:
<distributionManagement>
<repository>
<id>mvn-nemp-ftp</id>
<name>Nemp's Maven Repository</name>
<url>http://mvn.neemre.com/</url>
</repository>
</distributionManagement>
In the pom file including the following did not work for me
I had to change
repositoriestodistributionManagementfor it to work for me in eclipse: