Answers for "how to add a tomcat server in intellij through maven"

-1

how to add a tomcat server in intellij through maven

<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<path>myProject</path>
</configuration>
</plugin>
</plugins>
</build>
Posted by: Guest on October-06-2020

Code answers related to "how to add a tomcat server in intellij through maven"

Browse Popular Code Answers by Language