Merge "Update pom to comply with maven central requirements"
diff --git a/maven.gradle b/maven.gradle
index ae1439e..b9e9c69 100644
--- a/maven.gradle
+++ b/maven.gradle
@@ -3,11 +3,12 @@
 project.ext.innerPom = { // used by mavenInstaller
     project {
         packaging 'aar'
-        version = ddVersion
-        groupId = ddGroup
-        artifactId = ddArtifactId
+        version ddVersion
+        groupId ddGroup
+        artifactId ddArtifactId
 
-        description = ddDescription
+        name ddArtifactId
+        description ddDescription
         url ddWebsite
 
         licenses {
@@ -17,9 +18,17 @@
             }
         }
 
+        developers {
+            developer {
+                name 'Kevin Jin'
+                organizationUrl 'https://github.com/ddkjin'
+            }
+        }
+
+        // http://central.sonatype.org/pages/requirements.html
         scm {
-            connection ddGit
-            developerConnection ddGit
+            connection "scm:git:${ddGit}"
+            developerConnection "scm:git:${ddGit}"
             url ddWebsite
         }