Pages

Thursday, April 26, 2012

Maven Tomcat Plugins



I tried to install and build a war into a tomcat server through 
maven. 
 I add the following tomcat plugin into the pom.xml file 



<plugins> 
        <!-- Maven Tomcat Plugin --> 
        <plugin> 
                <groupId>org.codehaus.mojo</groupId> 
                <artifactId>tomcat-maven-plugin</artifactId> 
                        <configuration> 
                                <server>TomcatServer</server> 
                        </configuration> 
        </plugin> 
</plugins>




No comments:

Post a Comment