Eric Francis
Eric Francis

Reputation: 24297

Maven: No marketplace entries found to handle castor, antrun, and ear plugins

I am importing a maven project into Eclipse. I have the m2e plugin installed and it is pointing to maven 2.2.1 on my machine.

I am getting these three errors:

Any resources provided would be greatly appreciated.

Thanks

Upvotes: 9

Views: 31943

Answers (3)

Zia Ul Mustafa
Zia Ul Mustafa

Reputation: 401

I faced this issue and I resolved this by enclosing the within the . Here is the example.

<build>
     <pluginManagement>
          <plugins>
              <plugin>
                 ....
              </plugin>
          </plugins>
     </pluginManagement>
</build>

Reference: Link

Upvotes: 0

thoredge
thoredge

Reputation: 12611

This thread, https://bugs.eclipse.org/bugs/show_bug.cgi?id=350414, contains a discussion and ultimately a patch to make eclipse capable of ignoring the connectors it can't find.

Most people on the thread find the m2e's demand for custom build life cycle mapping problematic.

Upvotes: 0

Eugene Kuleshov
Eugene Kuleshov

Reputation: 31795

You can define custom build life cycle mapping for those plugins and make m2eclipse execute certain goals during Eclipse build.

Upvotes: 3

Related Questions