Author: sumedha
Date: Wed Aug  1 01:05:28 2007
New Revision: 561698

URL: http://svn.apache.org/viewvc?view=rev&rev=561698
Log:
Added Documentation artifact for distribution

Added:
    
webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/src/main/assembly/doc.xml
   (with props)
Modified:
    
webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/pom.xml

Modified: 
webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/pom.xml?view=diff&rev=561698&r1=561697&r2=561698
==============================================================================
--- 
webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/pom.xml 
(original)
+++ 
webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/pom.xml 
Wed Aug  1 01:05:28 2007
@@ -3,22 +3,60 @@
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
     <modelVersion>4.0.0</modelVersion>
-    <parent>
+    <parent>
        <groupId>org.apache.sandesha2</groupId>
-       <artifactId>sandesha2-parent</artifactId>
-        <version>SNAPSHOT</version>
+       <artifactId>sandesha2-parent</artifactId>
+        <version>SNAPSHOT</version>
     </parent>
 
     <groupId>org.apache.sandesha2</groupId>
     <artifactId>distribution</artifactId>
-
     <name>Sandesha2 - Distribution</name>
     <description>Sandesha2 - Distribution</description>
     <packaging>pom</packaging>
 
     <build>
-    <plugins>
-
+    <plugins>
+       <plugin>
+           <groupId>org.apache.maven.plugins</groupId>
+           <artifactId>maven-antrun-plugin</artifactId>
+           <version>1.1</version>
+           <inherited>false</inherited>
+           <executions>
+                   <execution>
+                           <id>javadoc-generation</id>
+                           <phase>package</phase>
+                           <configuration>
+                                   <tasks>
+                                           <mkdir 
dir="${basedir}/target/docs/apidocs"/>
+                                           <javadoc 
packagenames="org.apache.sandesha2.*"
+                                                            
destdir="${basedir}/target/docs/apidocs"
+                                                            
classpathref="maven.runtime.classpath"
+                                                            author="true"
+                                                            version="true"
+                                                            use="true"
+                                                            
windowtitle="Sandesha2 API"
+                                                            
doctitle="Sandesha2"
+                                                            bottom="Copyright 
&#169; 2007 Apache Web Services Project. All Rights Reserved."
+                                                            >
+                                                           <packageset 
dir="../../modules/core/src/main/java" defaultexcludes="yes">
+                                                                   <include 
name="org/apache/sandesha2/**"/>
+                                                           </packageset>
+                                                           <packageset 
dir="../../modules/interop/src/main/java" defaultexcludes="yes">
+                                                                   <include 
name="org/apache/sandesha2/**"/>
+                                                           </packageset>    
+                                                           <packageset 
dir="../../modules/rampart-integration/src/main/java" defaultexcludes="yes">
+                                                                   <include 
name="org/apache/sandesha2/**"/>
+                                                           </packageset>       
                                                
+                                             </javadoc>
+                                       </tasks>
+                                   </configuration>
+                                   <goals>
+                                           <goal>run</goal>
+                                   </goals>
+                           </execution>
+                   </executions>
+        </plugin>
         <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-assembly-plugin</artifactId>
@@ -32,14 +70,15 @@
                     </goals>
                     <configuration>
                         <descriptors>
-                            <descriptor>src/main/assembly/bin.xml</descriptor>
+                            <descriptor>src/main/assembly/bin.xml</descriptor>
                             <descriptor>src/main/assembly/src.xml</descriptor>
+                           <descriptor>src/main/assembly/doc.xml</descriptor>
                         </descriptors>
                         <finalName>sandesha2-${version}</finalName>
                     </configuration>
                 </execution>
             </executions>
-        </plugin>
+        </plugin>
     </plugins>
 </build>
-</project>
+</project>

Added: 
webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/src/main/assembly/doc.xml
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/src/main/assembly/doc.xml?view=auto&rev=561698
==============================================================================
--- 
webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/src/main/assembly/doc.xml
 (added)
+++ 
webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/src/main/assembly/doc.xml
 Wed Aug  1 01:05:28 2007
@@ -0,0 +1,35 @@
+<assembly>
+    <id>docs</id>
+    <includeBaseDirectory>true</includeBaseDirectory> 
+    <formats>
+       <!--<format>tar.gz</format>  //uncomment,if tar.gz archive needed-->
+        <format>zip</format>
+    </formats>
+
+    <fileSets>
+        <fileSet>
+           <directory>../../xdocs</directory>
+            <outputDirectory>xdocs</outputDirectory>
+            <excludes>
+                <exclude>.svn/**</exclude>
+            </excludes>
+        </fileSet>
+        <fileSet>
+           <directory>target/docs/apidocs</directory>
+           <outputDirectory>apidocs</outputDirectory>
+            <excludes>
+                <exclude>.svn/**</exclude>
+            </excludes>
+        </fileSet>
+        <fileSet>
+            <directory>../..</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>README.txt</include>
+                <include>release-notes.html</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+</assembly>
+

Propchange: 
webservices/sandesha/branches/sandesha2/java/1_3/modules/distribution/src/main/assembly/doc.xml
------------------------------------------------------------------------------
    svn:executable = *



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to