diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/build.gradle | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/common/build.gradle b/common/build.gradle deleted file mode 100644 index 4fb6952..0000000 --- a/common/build.gradle +++ /dev/null @@ -1,60 +0,0 @@ -dependencies { - compile 'com.google.guava:guava:13.0.1' - - testCompile 'junit:junit:3.8.1' -} - -def getVersion() { - if (project.has("release")) { - return project.ext.baseVersion - } - - return project.ext.baseVersion + '-SNAPSHOT' -} - -version = getVersion() -group = 'com.android.tools' -archivesBaseName = 'common' - -uploadArchives { - repositories { - mavenDeployer { - beforeDeployment { MavenDeployment deployment -> - if (!project.has("release")) { - throw new StopExecutionException("uploadArchives must be called with the release.gradle init script") - } - - signing.signPom(deployment) - } - - repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") { - authentication(userName: sonatypeUsername, password: sonatypePassword) - } - - pom.project { - name 'Android Tools common library' - description 'common library used by other Android tools libraries.' - url 'http://tools.android.com' - inceptionYear '2007' - - licenses { - license { - name 'The Apache Software License, Version 2.0' - url 'http://www.apache.org/licenses/LICENSE-2.0.txt' - distribution 'repo' - } - } - - scm { - url "https://android.googlesource.com/platform/sdk" - connection "git://android.googlesource.com/platform/sdk.git" - } - developers { - developer { - name 'The Android Open Source Project' - } - } - } - } - } -} |