Can't compile with maven-eclipse-plugin
Answered
I have an application with spring, maven, java. In the pom.xml I have a plugin called "maven-eclipse-plugin" but maven does not find dependencies.
I have IntellIj build #IU-213.6461.79.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
the error what i got is:

Please sign in to leave a comment.
AFAIK, this plug-in is retired. Why do you need it?
Does your project build from the command line, outside of IntelliJ IDEA?
No, we don't use it by command line but I don't have the permissions to modify the project. They recommend us to use eclipse because it works perfectly but i want to use intellij. There is no way, is there?