Define Maven release and snapshot repositories

Signed-off-by: Shawn O. Pearce <sop@google.com>
diff --git a/pom.xml b/pom.xml
index 54d3dbf..bb65748 100644
--- a/pom.xml
+++ b/pom.xml
@@ -403,4 +403,20 @@
       <url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/</url>
     </pluginRepository>
   </pluginRepositories>
+
+  <distributionManagement>
+    <snapshotRepository>
+      <id>gerrit-snapshot-repository</id>
+      <name>gerrit Snapshot Repository</name>
+      <url>dav:https://gerrit.googlecode.com/svn/mavenrepo/snapshots</url>
+      <uniqueVersion>true</uniqueVersion>
+    </snapshotRepository>
+
+    <repository>
+      <id>gerrit-maven-repository</id>
+      <name>gerrit Maven Repository</name>
+      <url>dav:https://gerrit.googlecode.com/svn/mavenrepo</url>
+      <uniqueVersion>true</uniqueVersion>
+    </repository>
+  </distributionManagement>
 </project>