Merge "Support password piping also for resume import"
diff --git a/BUCK b/BUCK
index 4a60691..b3aae10 100644
--- a/BUCK
+++ b/BUCK
@@ -26,10 +26,10 @@
   ],
   deps = [
     HTTP_LIB,
-    GSON,
   ],
   provided_deps = [
     LOG4J,
+    GSON,
   ],
 )
 
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..2463e22
--- /dev/null
+++ b/README.md
@@ -0,0 +1,21 @@
+Importer - Gerrit Plugin to import projects
+===========================================
+
+The importer plugin allows to import projects from one Gerrit server
+into another Gerrit server.
+
+Projects can be imported while both source and target Gerrit server
+are online. There is no downtime required.
+
+The git repository and all changes of the project, including approvals
+and review comments, are imported. Historic timestamps are preserved.
+
+Project imports can be resumed. This means a project team can continue
+to work in the source system while the import to the target system is
+done. By resuming the import the project in the target system can be
+updated with the missing delta.
+
+The importer plugin can also be used to copy a project within one
+Gerrit server, and in combination with the
+[delete-project](https://gerrit.googlesource.com/plugins/delete-project/+doc/master/src/main/resources/Documentation/about.md)
+plugin it can be used to rename a project.
diff --git a/VERSION b/VERSION
index 63d6066..920fe49 100644
--- a/VERSION
+++ b/VERSION
@@ -1,5 +1,5 @@
 # Used by BUCK to include "Implementation-Version" in plugin Manifest.
 # If this file doesn't exist the output of 'git describe' is used
 # instead.
-PLUGIN_VERSION = '1.0-SNAPSHOT'
+PLUGIN_VERSION = '2.11'
 
diff --git a/lib/gerrit/BUCK b/lib/gerrit/BUCK
index df798a7..b8298c6 100644
--- a/lib/gerrit/BUCK
+++ b/lib/gerrit/BUCK
@@ -1,7 +1,7 @@
 include_defs('//bucklets/maven_jar.bucklet')
 
-VER = '2.11-SNAPSHOT'
-REPO = MAVEN_LOCAL
+VER = '2.11'
+REPO = MAVEN_CENTRAL
 
 maven_jar(
   name = 'plugin-api',
diff --git a/pom.xml b/pom.xml
index 414839d..1cfee7c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,12 +21,12 @@
   <groupId>com.googlesource.gerrit.plugins.importer</groupId>
   <artifactId>importer</artifactId>
   <packaging>jar</packaging>
-  <version>1.0-SNAPSHOT</version>
+  <version>2.11</version>
   <name>importer</name>
 
   <properties>
     <Gerrit-ApiType>plugin</Gerrit-ApiType>
-    <Gerrit-ApiVersion>2.11-SNAPSHOT</Gerrit-ApiVersion>
+    <Gerrit-ApiVersion>${project.version}</Gerrit-ApiVersion>
   </properties>
 
   <build>