user595234
user595234

Reputation: 6259

Maven how to invoke a plugin goal?

In the Tomcat Maven plugin, tomcat7-maven-plugin, how to invoke the goal, tomcat7:deploy, after package phase ? can you please give me concise sample pom file ?

Thanks.

Upvotes: 0

Views: 195

Answers (1)

Niels Bech Nielsen
Niels Bech Nielsen

Reputation: 4859

Add an execution for the plugin and tie it to a phase after the package phase, i.e. verify or install..

<build>
<plugins>
  <plugin>
    <dependency>
  <groupId>org.apache.tomcat.maven</groupId>
  <artifactId>tomcat7-maven-plugin</artifactId>
  <version>2.2</version>
    <executions>
      <execution>
        <id>deploy</id>
        <phase>install</phase>
        <goals>
          <goal>deploy</goal>
        </goals>
      </execution>
    </executions>
  </plugin>
</plugins>
</build>

Upvotes: 2

Related Questions