В моем файле pom.xml появляется ошибка: 1001 *
Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:build-helper-maven-plugin:1.4:add-source (execution: add-generated-sources, phase: process-sources)
Вот выдержка из моего pom.xml:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-generated-sources</id>
<phase>process-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/entitygenerator</source>
<source>${basedir}/src/main/groovy</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
Ошибка в теге <execution>
.
Сейчас я изо всех сил пытаюсь найти нужный плагин Eclipse, но каким-то образом я не могу его найти. Вы можете помочь?
Я использую Eclipse Indigo и Maven 3.0.3 с JDK 1.6_22 для Windows XP SP3.