fix site deployment configuration
diff --git a/pom.xml b/pom.xml
index c989baf..b6f5ce1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -57,6 +57,34 @@
               <ignorePathToDelete>components/**</ignorePathToDelete>
             </ignorePathsToDelete>
           </configuration>
+          <executions>
+            <execution>
+              <id>scm-publish</id>
+              <phase>site-deploy</phase>
+              <goals>
+                <goal>publish-scm</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-site-plugin</artifactId>
+          <configuration>
+            <skipDeploy>true</skipDeploy>
+          </configuration>
+          <executions>
+            <execution>
+              <id>stage-for-scm-publish</id>
+              <phase>post-site</phase>
+              <goals>
+                <goal>stage</goal>
+              </goals>
+              <configuration>
+                <skipDeploy>false</skipDeploy>
+              </configuration>
+            </execution>
+          </executions>
         </plugin>
       </plugins>
     </pluginManagement>
diff --git a/src/site/site.xml b/src/site/site.xml
index 5c9116c..9b8c295 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -24,12 +24,6 @@
     <href>http://archiva.apache.org/redback</href>
   </bannerLeft>
 
-  <!--skin>
-    <groupId>org.apache.maven.skins</groupId>
-    <artifactId>maven-fluido-skin</artifactId>
-    <version>1.2.2</version>
-  </skin-->
-
   <custom>
     <fluidoSkin>
       <topBarEnabled>true</topBarEnabled>