Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

configure maven2 tomcat plugin (See related posts)

pom.xml

  <build>
    <finalName>reload-test</finalName>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>tomcat-maven-plugin</artifactId>
        <configuration>
          <url>http://localhost:8090/manager</url>
          <server>myserver</server>
        </configuration>
      </plugin>
    </plugins>
  </build>



You need to create an account or log in to post comments to this site.