You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by sa...@apache.org on 2008/01/14 08:47:30 UTC

svn commit: r611730 - in /webservices/rampart/trunk/java: modules/distribution/bin.xml modules/documentation/ modules/documentation/pom.xml modules/documentation/src/ pom.xml src/

Author: saminda
Date: Sun Jan 13 23:47:28 2008
New Revision: 611730

URL: http://svn.apache.org/viewvc?rev=611730&view=rev
Log:
Moved documentation resources to documentation module. 

Added:
    webservices/rampart/trunk/java/modules/documentation/
    webservices/rampart/trunk/java/modules/documentation/pom.xml
    webservices/rampart/trunk/java/modules/documentation/src/
      - copied from r611707, webservices/rampart/trunk/java/src/
Removed:
    webservices/rampart/trunk/java/src/
Modified:
    webservices/rampart/trunk/java/modules/distribution/bin.xml
    webservices/rampart/trunk/java/pom.xml

Modified: webservices/rampart/trunk/java/modules/distribution/bin.xml
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/java/modules/distribution/bin.xml?rev=611730&r1=611729&r2=611730&view=diff
==============================================================================
--- webservices/rampart/trunk/java/modules/distribution/bin.xml (original)
+++ webservices/rampart/trunk/java/modules/distribution/bin.xml Sun Jan 13 23:47:28 2008
@@ -32,7 +32,7 @@
             <outputDirectory>${dist.dir}/docs/apidocs</outputDirectory>
         </fileSet>
         <fileSet>
-            <directory>../../target/site</directory>
+            <directory>../documentation/target/site</directory>
             <outputDirectory>${dist.dir}/docs</outputDirectory>
         </fileSet>
         <fileSet>

Added: webservices/rampart/trunk/java/modules/documentation/pom.xml
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/java/modules/documentation/pom.xml?rev=611730&view=auto
==============================================================================
--- webservices/rampart/trunk/java/modules/documentation/pom.xml (added)
+++ webservices/rampart/trunk/java/modules/documentation/pom.xml Sun Jan 13 23:47:28 2008
@@ -0,0 +1,32 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         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">
+
+    <parent>
+        <groupId>org.apache.rampart</groupId>
+        <artifactId>rampart-project</artifactId>
+        <version>SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>rampart-documentaion</artifactId>
+    <packaging>pom</packaging>
+    <name>Rampart - Documentation</name>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-site-plugin</artifactId>
+                <version>2.0-beta-5</version>
+                <inherited>false</inherited>
+                <executions>
+                    <execution>
+                        <phase>install</phase>
+                        <goals>
+                            <goal>site</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>
\ No newline at end of file

Modified: webservices/rampart/trunk/java/pom.xml
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/java/pom.xml?rev=611730&r1=611729&r2=611730&view=diff
==============================================================================
--- webservices/rampart/trunk/java/pom.xml (original)
+++ webservices/rampart/trunk/java/pom.xml Sun Jan 13 23:47:28 2008
@@ -464,26 +464,9 @@
                 </property>
             </activation>
             <modules>
+                <module>modules/documentation</module>
                 <module>modules/distribution</module>
             </modules>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-site-plugin</artifactId>
-                        <version>2.0-beta-5</version>
-                        <inherited>false</inherited>
-                        <executions>
-                            <execution>
-                                <phase>install</phase>
-                                <goals>
-                                    <goal>site</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
         </profile>
 
     </profiles>