aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbootstraponline <code@bootstraponline.com>2015-03-28 16:33:16 -0400
committerbootstraponline <code@bootstraponline.com>2015-03-28 16:39:44 -0400
commita2706a22b2292a03200771a012da32fec7c9ba12 (patch)
tree2480018c629afdd01ae7f4263d214160bdfad86d
parent264cea5323e927fda75f926a468fad801c653029 (diff)
downloaddroiddriver-a2706a22b2292a03200771a012da32fec7c9ba12.tar.gz
Update pom to comply with maven central requirements
Change-Id: I385b254cef793ce7c3046764564be3cf1ec1a4d6
-rw-r--r--maven.gradle21
1 files changed, 15 insertions, 6 deletions
diff --git a/maven.gradle b/maven.gradle
index ae1439e..b9e9c69 100644
--- a/maven.gradle
+++ b/maven.gradle
@@ -3,11 +3,12 @@ apply plugin: 'com.github.dcendents.android-maven'
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 @@ project.ext.innerPom = { // used by mavenInstaller
}
}
+ 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
}