Perhaps try adding a default-cli execution as below:
> <plugin>
> <groupId>org.codehaus.mojo</groupId>
> <artifactId>tomcat-maven-plugin</artifactId>
<executions>
<execution>
<id>default-cli</id>
> <configuration>
> <server>tomcat</server>
> <url>http://localhost:8081/manager</url>
> <path>/freecologic</path>
> </configuration>
</execution>
</executions>
> </plugin>
This is documented here:
http://maven.apache.org/guides/mini/guide-default-execution-ids.html
Otherwise, check was "mvn help:effective-pom" tells you about your
tomcat-m-p configuration. Maybe a parent is affecting the build
config?
Also, you should add a version to the plugin node, its a best practice.
Wayne
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]