You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2011/11/12 03:53:31 UTC

svn commit: r1201173 - /maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml

Author: hboutemy
Date: Sat Nov 12 02:53:30 2011
New Revision: 1201173

URL: http://svn.apache.org/viewvc?rev=1201173&view=rev
Log:
fixed IT sites copy to artifact's site

Modified:
    maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml

Modified: maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml?rev=1201173&r1=1201172&r2=1201173&view=diff
==============================================================================
--- maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml (original)
+++ maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml Sat Nov 12 02:53:30 2011
@@ -106,7 +106,7 @@
             <artifactId>maven-resources-plugin</artifactId>
             <executions>
               <execution>
-                <id>copy-sample</id>
+                <id>copy-sidebar</id>
                 <phase>site</phase>
                 <goals>
                   <goal>copy-resources</goal>
@@ -114,10 +114,25 @@
                 <configuration>
                   <resources>
                     <resource>
-                      <directory>${project.build.directory}/it/sample/target/site/</directory>
+                      <directory>${project.build.directory}/it/sidebar/target/site/</directory>
                     </resource>
                   </resources>
-                  <outputDirectory>${project.build.directory}/site/sample/</outputDirectory>
+                  <outputDirectory>${project.build.directory}/site/sidebar/</outputDirectory>
+                </configuration>
+              </execution>
+              <execution>
+                <id>copy-topbar</id>
+                <phase>site</phase>
+                <goals>
+                  <goal>copy-resources</goal>
+                </goals>
+                <configuration>
+                  <resources>
+                    <resource>
+                      <directory>${project.build.directory}/it/topbar/target/site/</directory>
+                    </resource>
+                  </resources>
+                  <outputDirectory>${project.build.directory}/site/topbar/</outputDirectory>
                 </configuration>
               </execution>
             </executions>