Prepare for mvn deploy.
diff --git a/gerrit-owners-autoassign/pom.xml b/gerrit-owners-autoassign/pom.xml
index aef3e3f..83e99f2 100644
--- a/gerrit-owners-autoassign/pom.xml
+++ b/gerrit-owners-autoassign/pom.xml
@@ -7,7 +7,7 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>com.vmware.gerrit</groupId>
+    <groupId>com.github.vadims</groupId>
     <artifactId>gerrit-owners-parent</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
@@ -15,6 +15,7 @@
   <artifactId>gerrit-owners-autoassign</artifactId>
   <packaging>jar</packaging>
   <name>gerrit-owners-autoassign</name>
+  <description>Gerrit Plugin for using OWNERS files for automatically assigning code reviewers.</description>
 
   <build>
     <plugins>
diff --git a/gerrit-owners-common/pom.xml b/gerrit-owners-common/pom.xml
index e9a82af..1657ea5 100644
--- a/gerrit-owners-common/pom.xml
+++ b/gerrit-owners-common/pom.xml
@@ -7,7 +7,7 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>com.vmware.gerrit</groupId>
+    <groupId>com.github.vadims</groupId>
     <artifactId>gerrit-owners-parent</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
@@ -15,6 +15,7 @@
   <artifactId>gerrit-owners-common</artifactId>
   <packaging>jar</packaging>
   <name>gerrit-owners-common</name>
+  <description>Gerrit OWNERS and Auto-Assign plugin common utilities.</description>
 
   <properties>
     <jacksonVersion>2.2.0</jacksonVersion>
diff --git a/gerrit-owners/pom.xml b/gerrit-owners/pom.xml
index 61f7087..7620f64 100644
--- a/gerrit-owners/pom.xml
+++ b/gerrit-owners/pom.xml
@@ -7,7 +7,7 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>com.vmware.gerrit</groupId>
+    <groupId>com.github.vadims</groupId>
     <artifactId>gerrit-owners-parent</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
@@ -15,7 +15,9 @@
   <artifactId>gerrit-owners</artifactId>
   <packaging>jar</packaging>
   <name>gerrit-owners</name>
-
+  <description>
+    Gerrit Plugin that provides a Prolog predicate for enabling per directory code review requirements.
+  </description>
   <build>
     <plugins>
       <plugin>
diff --git a/pom.xml b/pom.xml
index 0df0df3..9a8470c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,14 +7,36 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
-  <groupId>com.vmware.gerrit</groupId>
+  <parent>
+    <groupId>org.sonatype.oss</groupId>
+    <artifactId>oss-parent</artifactId>
+    <version>7</version>
+  </parent>
+
+  <groupId>com.github.vadims</groupId>
   <artifactId>gerrit-owners-parent</artifactId>
   <packaging>pom</packaging>
   <version>1.0-SNAPSHOT</version>
 
   <name>gerrit-owners-parent</name>
+  <description>Parent project of gerrit-owners and gerrit-owners-autoassign.</description>
   <url>http://github.com/vadims/gerrit-owners</url>
 
+  <developers>
+    <developer>
+      <name>Vadim Spivak</name>
+      <email>vadim@spivak.net</email>
+      <organization>VMware, Inc.</organization>
+    </developer>
+  </developers>
+
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+
   <scm>
     <connection>scm:git:git@github.com:vadims/gerrit-owners.git</connection>
     <url>scm:git:git@github.com:vadims/gerrit-owners.git</url>
@@ -90,6 +112,7 @@
         <artifactId>maven-release-plugin</artifactId>
         <version>2.4.1</version>
         <configuration>
+          <pushChanges>false</pushChanges>
           <tagNameFormat>v@{project.version}</tagNameFormat>
         </configuration>
       </plugin>
@@ -139,16 +162,4 @@
       </dependency>
     </dependencies>
   </dependencyManagement>
-
-  <repositories>
-    <repository>
-      <id>gerrit-api-repository-snapshot</id>
-      <url>https://gerrit-api.commondatastorage.googleapis.com/snapshot/</url>
-    </repository>
-
-    <repository>
-      <id>gerrit-api-repository-release</id>
-      <url>https://gerrit-api.commondatastorage.googleapis.com/release/</url>
-    </repository>
-  </repositories>
 </project>