I just wanted to double-check, has anyone found or is working on a Tomcat 7 plugin? If not, is anyone interested in helping me get it up and running?

I want another quick alternative to Glassfish, JBoss AS 6.0 is a bit heavy still for quick mockups.

Walter

link|improve this question
feedback

6 Answers

up vote 2 down vote accepted

There is t7mp - a Tomcat 7 Maven Plugin - on Google code.

Cargo (and its Cargo Maven2 Plugin) also has support for Tomcat 7 (this was CARGO-790).

Apache Tomcat Maven Plugin 2.0-beta-1 supports Tomcat 7.

link|improve this answer
I am aware of Cargo, I still prefer the embedded version though. I will check out the t7mp plugin, it looks like what I'd want. – Walter White Sep 16 '10 at 1:49
I created jira.codehaus.org/browse/MTOMCAT-62 for the "Maven 2.x Tomcat Plugin" – Travis Sep 27 '10 at 17:39
Apache Tomcat Maven Plugin 2.0-beta-1 supports Tomcat 7 :) tomcat.apache.org/maven-plugin-2 – flob May 15 at 13:59
feedback

It work for me as the following.

My setting.xml

 <server>  
   <id>local_tomcat</id>  
   <username>ray</username>  
   <password>password</password>  
 </server>  

My plugin configuration

 <plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>tomcat-maven-plugin</artifactId>
  <configuration>
     <server>local_tomcat</server>  
     <url>http://localhost:8080/manager/text</url>  
  </configuration>
 </plugin>

My tomcat-users.xml

 <role rolename="manager-gui"/>
    <role rolename="manager-script"/>
  <user password="password" roles="manager-gui, manager-script" username="ray"/>
link|improve this answer
2  
Yes, that works. I was also struggling with this, but the URL configuration was what I needed. Seem to think Tomcat 6 was http://localhost:8080/manager, while Tomcat 7 is http://localhost:8080/manager/text – Jesse Mar 7 '11 at 7:19
The URL ending in /text didn't work for me, I had to use /html to deploy remotely. I'm not sure why -- the Tomcat documentation seems to be in favour of the /text one. – Peter Becker Sep 16 '11 at 5:15
feedback

There is a new tomcat 7 plugin developed by the apache tomcat team.

http://tomcat.apache.org/maven-plugin-2.0-SNAPSHOT/

Currently you have to checkout the sources and install it to your local repository. After that you can use it in the plugin section of your pom:

      <plugin>
          <groupId>org.apache.tomcat.maven</groupId>
          <artifactId>tomcat7-maven-plugin</artifactId>
          <version>2.0-SNAPSHOT</version>
        <executions>
          <execution>
            <id>start-tomcat</id>
            <phase>compile</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
                  <path>/</path>
                  <serverXml>src/main/tomcatconf/server.xml</serverXml>
                </configuration>
          </execution>
        </executions>
      </plugin>
link|improve this answer
feedback

Using maven cargo your can coufigure your project that way :

<plugin>
    <groupId>org.codehaus.cargo</groupId>
    <artifactId>cargo-maven2-plugin</artifactId>
    <version>1.0.6</version>
    <configuration>
        <container>
            <containerId>tomcat7x</containerId>
            <type>installed</type>
            <home>${catalina.home}</home>
        </container>
        <configuration>
            <type>existing</type>
            <home>${catalina.home}</home>
        </configuration>
        <deployer>
            <type>installed</type>
            <deployables>
                <deployable>
                    <groupId>${project.groupId}</groupId>
                    <artifactId>${project.artifactId}</artifactId>
                    <type>war</type>
                </deployable>
            </deployables>
        </deployer>
    </configuration>
</plugin>       

don't forget to configure your catalina.home property

The you can deploy it using:

mvn cargo:deploy
link|improve this answer
feedback

For quick mockups you should try Jetty

link|improve this answer
feedback

For Tomcat 7,

Step 1: Modules tab of server add

Document base: <PATH>\Apache-Tomcat-7.0.0\webapps\manager
Path: /manager

Step 2: Update POM to:

<plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>tomcat-maven-plugin</artifactId>
        <configuration>
          <url>http://localhost:8080/manager/text</url>
          <update>true</update>
                <warFile>target/${project.artifactId}-${project.version}.war</warFile>
                <path>/${project.artifactId}</path>
                <username>tomcat_user</username>
                <password>tomcat_password</password>
        </configuration>
</plugin>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown