You are viewing a plain text version of this content. The canonical link for it is here.
Posted to sandesha-dev@ws.apache.org by su...@apache.org on 2007/08/01 10:06:49 UTC

svn commit: r561699 - in /webservices/sandesha/trunk/java/modules/distribution: pom.xml src/main/assembly/doc.xml

Author: sumedha
Date: Wed Aug  1 01:06:45 2007
New Revision: 561699

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

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

Modified: webservices/sandesha/trunk/java/modules/distribution/pom.xml
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/distribution/pom.xml?view=diff&rev=561699&r1=561698&r2=561699
==============================================================================
--- webservices/sandesha/trunk/java/modules/distribution/pom.xml (original)
+++ webservices/sandesha/trunk/java/modules/distribution/pom.xml Wed Aug  1 01:06:45 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/trunk/java/modules/distribution/src/main/assembly/doc.xml
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/distribution/src/main/assembly/doc.xml?view=auto&rev=561699
==============================================================================
--- webservices/sandesha/trunk/java/modules/distribution/src/main/assembly/doc.xml (added)
+++ webservices/sandesha/trunk/java/modules/distribution/src/main/assembly/doc.xml Wed Aug  1 01:06:45 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/trunk/java/modules/distribution/src/main/assembly/doc.xml
------------------------------------------------------------------------------
    svn:executable = *



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