Peg the versions of JGit and MINA SSHD to something known

For our needs within Gerrit we can mostly stick to a known version
of these two dependencies.

JGit now has a more recent snapshot, but named with an exact version
number off `git describe`, so we know rely on that so its clear from
the JAR file name in our WAR exactly what version of code was used.

For SSHD we tag the version with a suffix of "-r$SVNREVISION",
but we also put the JARs into our own Gerrit Maven repository,
as they aren't available from any other public Maven repository.

This simplifies the new developer installation guide, as most
users only need to use our own project and can get the rest
off Maven repositories.

Signed-off-by: Shawn O. Pearce <sop@google.com>
diff --git a/Documentation/dev-eclipse.txt b/Documentation/dev-eclipse.txt
index e66e412..352fb04 100644
--- a/Documentation/dev-eclipse.txt
+++ b/Documentation/dev-eclipse.txt
@@ -37,22 +37,6 @@
 http://m2eclipse.codehaus.org/[m2eclipse]
 
 
-Pre-Build
----------
-
-Ensure jgit has been installed in your maven repository:
-
-====
-  (cd ../jgit/jgit-maven/jgit/ && mvn install)
-====
-
-Ensure sshd has been installed in your maven repository:
-
-====
-  (cd ../sshd/ && mvn install)
-====
-
-
 Import Projects
 ---------------
 
diff --git a/Documentation/dev-readme.txt b/Documentation/dev-readme.txt
index 566f44d..1816403 100644
--- a/Documentation/dev-readme.txt
+++ b/Documentation/dev-readme.txt
@@ -88,19 +88,6 @@
 to configure your workspace.
 
 
-Dependencies
-------------
-
-You need to ensure all dependencies have been installed into your
-local maven repository if Gerrit is relying on snapshots and not
-release versions of them.
-
-====
-  (cd ../jgit/jgit-maven/jgit && mvn clean install)
-  (cd ../sshd && mvn clean install)
-====
-
-
 Building
 --------
 
diff --git a/Documentation/install.txt b/Documentation/install.txt
index 1ebe802..74398e2 100644
--- a/Documentation/install.txt
+++ b/Documentation/install.txt
@@ -41,9 +41,6 @@
   cd gerrit2
   repo init -u git://android.git.kernel.org/tools/manifest.git
 
-  (cd jgit/jgit-maven/jgit && mvn install)
-  (cd sshd && mvn install)
-
   mvn clean package
   cp target/gerrit-*.war ...YOUR.DEST.../gerrit.war
 ====
@@ -51,11 +48,6 @@
 The first build may take a while as dependencies are searched
 for and downloaded from Maven distribution repositories.
 
-Unfortunately you need to install snapshots of both JGit and
-SSHD to your local Maven repository (typically under `~/.m2`).
-These core dependencies are still under active development and have
-not made final releases yet.
-
 Apache Maven:
 
 * http://maven.apache.org/download.html[Download]
diff --git a/pom.xml b/pom.xml
index 2b20c16..84e4745 100644
--- a/pom.xml
+++ b/pom.xml
@@ -463,7 +463,7 @@
     <dependency>
       <groupId>org.apache.sshd</groupId>
       <artifactId>sshd</artifactId>
-      <version>1.0-SNAPSHOT</version>
+      <version>1.0-r742884</version>
       <scope>compile</scope>
     </dependency>
 
@@ -491,7 +491,7 @@
     <dependency>
       <groupId>org.spearce</groupId>
       <artifactId>jgit</artifactId>
-      <version>0.4-SNAPSHOT</version>
+      <version>0.4.0-204-g0aae0d8</version>
       <scope>compile</scope>
     </dependency>
 
@@ -578,8 +578,8 @@
     </repository>
 
     <repository>
-      <id>jgit-snapshot-repository</id>
-      <url>http://egit.googlecode.com/svn/maven/snapshot-repository/</url>
+      <id>jgit-repository</id>
+      <url>http://egit.googlecode.com/svn/maven/</url>
     </repository>
 
     <repository>