Cleanup pom - lock deploy plugin to 2.5 and remove extra source/javadoc profile as they are already enabled when building with -DperformRelease

git-svn-id: https://google-guice.googlecode.com/svn/trunk@1456 d779f126-a31b-0410-b53b-1d3aecad763e
diff --git a/pom.xml b/pom.xml
index 12beafd..4cd2a90 100644
--- a/pom.xml
+++ b/pom.xml
@@ -329,6 +329,10 @@
             <autoVersionSubmodules>true</autoVersionSubmodules>
           </configuration>
         </plugin>
+        <plugin>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <version>2.5</version>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>
@@ -336,38 +340,6 @@
   <profiles>
     <profile>
       <!--
-       | Release profile: capture source and javadoc
-      -->
-      <id>release-sign-artifacts</id>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-source-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>attach-sources</id>
-                <goals>
-                  <goal>jar</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <artifactId>maven-javadoc-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>attach-javadocs</id>
-                <goals>
-                  <goal>jar</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    <profile>
-      <!--
        | Deployment profile for the Sonatype Grid
       -->
       <id>sonatype-grid</id>