Author: dennisl
Date: Sun Sep 14 04:39:32 2008
New Revision: 695198

URL: http://svn.apache.org/viewvc?rev=695198&view=rev
Log:
o Use a directory for the stage deploy that is writable on a Unix system.

Modified:
    maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/pom.xml
    maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/verify.bsh

Modified: maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/pom.xml?rev=695198&r1=695197&r2=695198&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/pom.xml (original)
+++ maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/pom.xml Sun Sep 14 
04:39:32 2008
@@ -28,7 +28,7 @@
     <site>
       <id>msite-304</id>
       <name>Example company web server</name>
-      <url>file:///www.example.com/parent</url>
+      <url>file:///tmp/www.example.com/parent</url>
     </site>
   </distributionManagement>
   <modules>

Modified: maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/verify.bsh
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/verify.bsh?rev=695198&r1=695197&r2=695198&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/verify.bsh (original)
+++ maven/plugins/trunk/maven-site-plugin/src/it/MSITE-304/verify.bsh Sun Sep 
14 04:39:32 2008
@@ -38,14 +38,14 @@
         return false;
     }
 
-    File parentDirectory = new File ( stagingDirectory, 
"localhost/www.example.com/parent" );
+    File parentDirectory = new File ( stagingDirectory, 
"localhost/tmp/www.example.com/parent" );
     if ( !parentDirectory.exists() || !parentDirectory.isDirectory() )
     {
         System.err.println( "Staging directory for parent is missing or not a 
directory." );
         return false;
     }
 
-    File childDirectory = new File ( stagingDirectory, 
"localhost/www.example.com/parent/child" );
+    File childDirectory = new File ( stagingDirectory, 
"localhost/tmp/www.example.com/parent/child" );
     if ( !childDirectory.exists() || !childDirectory.isDirectory() )
     {
         System.err.println( "Staging directory for child is missing or not a 
directory." );


Reply via email to