I've defined repository in my pom:
<repositories>
<repository>
<id>EvoSuite</id>
<name>EvoSuite Repository</name>
<url>http://www.evosuite.org/m2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>EvoSuite</id>
<name>EvoSuite Repository</name>
<url>http://www.evosuite.org/m2</url>
</pluginRepository>
</pluginRepositories>
But getting this error (repositories are coming from settings.xml that I can't change)
No plugin found for prefix 'evosuite' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (C:\Users\LOde.m2\repository), remote-mirror (http://xxxxxxxx/nexus/content/repositories/repo), nexus-central-remote-repo (http://yyyyyyy/nexus/content/repositories/public)]
I don't see in the error the custom repository from pom.
Adding plugin to pom:
<plugin>
<groupId>org.evosuite.plugins</groupId>
<artifactId>evosuite-maven-plugin</artifactId>
<version>1.0.3</version>
</plugin>
didn't help