Hi all,

How can I bind a goal of a plugin to a phase of the maven-release-plugin?

I tried the following but that didn't work...

<build>
    ...
    <plugin>
        <groupId>org.mycompany.plugins</groupId>
        <artifactId>maven-myplugin-plugin</artifactId>
        <version>0.1-SNAPSHOT</version>
        <executions>
          <execution>
            <phase>rewrite-poms-for-release</phase>
            <goals>
              <goal>issue-list</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    ...
</build>

Regards,
-- 
Johan Vogelzang

Reply via email to