Configured defaults to be able to use maven-scm-publish-plugin to publish Maven sites.

diff --git a/pom.xml b/pom.xml
index f4d71bf..d8e6420 100644
--- a/pom.xml
+++ b/pom.xml
@@ -57,4 +57,40 @@
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/parent/trunk</developerConnection>
         <url>http://svn.apache.org/viewvc/webservices/parent/trunk</url>
     </scm>
-</project>  
\ No newline at end of file
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <version>2.9</version>
+                    <configuration>
+                        <breakiterator>true</breakiterator>
+                        <!-- The notimestamp, windowtitle and bottom parameters are chosen to minimize the number
+                             of changes between releases (to avoid mass changes when committing the site for a new release) -->
+                        <notimestamp>true</notimestamp>
+                        <windowtitle>${project.name} API</windowtitle>
+                        <bottom>Copyright &#169; {organizationName}. All Rights Reserved.</bottom>
+                        <!-- doctitle only appears in the summary and we should include the version there -->
+                        <doctitle>${project.name} ${project.version} API</doctitle>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-site-plugin</artifactId>
+                <version>3.2</version>
+                <configuration>
+                    <skipDeploy>true</skipDeploy>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-scm-publish-plugin</artifactId>
+                <version>1.0-beta-2</version>
+            </plugin>
+        </plugins>
+    </build>
+</project>