Class TomcatWebapp


  • public class TomcatWebapp
    extends MavenDependency

    Tomcat Webapp used in Embedded Tomcat Maven plugin configuration. These are custom webapps that you would want to include for some reason (The {webapp artifact}.war need to be available in a Maven Repo). Note. the standard webapps are included with plugin properties such as enablePlatform and enableShare.

    Alfresco Maven Plugin config looks something like this:
        
        <tomcatWebapps>
          <tomcatWebapp>
              <groupId>com.exari</groupId>
              <artifactId>exari-docgen-cmwar</artifactId>
              <version>${project.version}</version>
              <contextPath>/exari</contextPath>
              <contextFile>${project.build.directory}/contexts/context-docgen.xml</contextFile>
          </tomcatWebapp>
        <tomcatWebapps>
        
     
    Since:
    3.0.0
    Version:
    1.0
    Author:
    martin.bergljung@alfresco.com