You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by jb...@apache.org on 2007/02/15 23:08:07 UTC

svn commit: r508191 - in /incubator/tuscany/java/sca/runtime/webapp/plugin.war: pom.xml src/site/ src/site/apt/ src/site/apt/usage.apt src/site/site.xml

Author: jboynes
Date: Thu Feb 15 14:08:07 2007
New Revision: 508191

URL: http://svn.apache.org/viewvc?view=rev&rev=508191
Log:
add doco for the war plugin
move plugin to o.a.t.sca group

Added:
    incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/
    incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/apt/
    incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/apt/usage.apt
    incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/site.xml   (with props)
Modified:
    incubator/tuscany/java/sca/runtime/webapp/plugin.war/pom.xml

Modified: incubator/tuscany/java/sca/runtime/webapp/plugin.war/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/runtime/webapp/plugin.war/pom.xml?view=diff&rev=508191&r1=508190&r2=508191
==============================================================================
--- incubator/tuscany/java/sca/runtime/webapp/plugin.war/pom.xml (original)
+++ incubator/tuscany/java/sca/runtime/webapp/plugin.war/pom.xml Thu Feb 15 14:08:07 2007
@@ -19,14 +19,15 @@
 -->
 <project>
     <parent>
-        <groupId>org.apache.tuscany.sca.runtime.webapp</groupId>
-        <artifactId>webapp</artifactId>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>parent</artifactId>
         <version>1.0-incubator-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>tuscany-war-plugin</artifactId>
     <packaging>maven-plugin</packaging>
     <name>Apache Tuscany War Plugin</name>
+    <description>A plugin for Apache Maven that adds a Tuscany runtime to a war.</description>
 
     <dependencies>
         <dependency>
@@ -45,4 +46,20 @@
             <version>1.2</version>
         </dependency>
     </dependencies>
+
+    <distributionManagement>
+      <site>
+        <id>apache.website</id>
+        <url>scp://people.apache.org/www/incubator.apache.org/tuscany/plugins/tuscany-war-plugin</url>
+      </site>
+    </distributionManagement>
+
+    <reporting>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-plugin-plugin</artifactId>
+        </plugin>
+      </plugins>
+    </reporting>
 </project>

Added: incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/apt/usage.apt
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/apt/usage.apt?view=auto&rev=508191
==============================================================================
--- incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/apt/usage.apt (added)
+++ incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/apt/usage.apt Thu Feb 15 14:08:07 2007
@@ -0,0 +1,29 @@
+Usage
+
+  The <<<tuscany-war-plugin>>> is associated with the <<<package>>> phase of the build lifecycle
+  and is typically included in the build definition for your project:
+
++---+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.tuscany.sca</groupId>
+                <artifactId>tuscany-war-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>tuscany-war</id>
+                        <goals>
+                            <goal>tuscany-war</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
++---+
+
+  The plugin adds the jars needed by the webapp integration code into WEB-INF/lib
+  so that they are included on the web application's classpath.
+
+  It also adds the jars needed by the webapp runtime into WEB-INF/tuscany/lib.
+  These are loaded by the integration code and do not appear on the web application's classpath.
\ No newline at end of file

Added: incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/site.xml?view=auto&rev=508191
==============================================================================
--- incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/site.xml (added)
+++ incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/site.xml Thu Feb 15 14:08:07 2007
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <body>
+    <menu name="Overview">
+      <item name="Introduction" href="index.html"/>
+      <item name="Goals" href="plugin-info.html"/>
+      <item name="Usage" href="usage.html"/>
+<!--
+      <item name="FAQ" href="faq.html"/>
+-->
+    </menu>
+<!--
+    <menu name="Examples">
+    </menu>
+-->
+  </body>
+</project>

Propchange: incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/runtime/webapp/plugin.war/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org