Date: 2004-12-10T11:58:42 Editor: DanDiephouse <[EMAIL PROTECTED]> Wiki: Apache Beehive Wiki Page: MavenBeehivePlugin URL: http://wiki.apache.org/beehive/MavenBeehivePlugin
no comment Change Log: ------------------------------------------------------------------------------ @@ -26,4 +26,8 @@ The plugin attempts to leverage the work that work that WAR plugin has done to make building webapps easy. Please read the [http://maven.apache.org/reference/plugins/war/ Maven War plugin documentation] on how to set up Maven for web applications. -Currently there is only support for the "war:inplace" command (the rest are coming soon!). When the Beehive Maven plugin is installed, war:inplace will process your JPF files and build the app. Then just add your webapp directory to Tomcat to be loaded. +Currently there is only support for the "war:inplace" command (the rest are coming soon!). When the Beehive Maven plugin is installed, war:inplace will process your JPF files and build the app. Then just add your webapp directory to Tomcat to be loaded. To add your application to Tomcat create a file in TOMCAT_HOME/conf/Catlina/localhost called "yourapp.xml". The file contents should contain something like: {{{ +<?xml version='1.0' encoding='utf-8'?> +<Context docBase="c:/eclipse/workspace/ch-blog-demo/resources" path="/demo" reloadable="true"> +</Context> +}}}
